mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-05 00:25:36 +08:00
Okay, not actually a game update. But the offset files now have the build number, which is very cool indeed.
23 lines
637 B
Python
23 lines
637 B
Python
'''
|
|
Created using https://github.com/a2x/cs2-dumper
|
|
Sat, 30 Dec 2023 03:17:25 +0000
|
|
'''
|
|
|
|
class RenderInputLayoutField_t:
|
|
m_pSemanticName = 0x0 # uint8_t[32]
|
|
m_nSemanticIndex = 0x20 # int32_t
|
|
m_Format = 0x24 # uint32_t
|
|
m_nOffset = 0x28 # int32_t
|
|
m_nSlot = 0x2C # int32_t
|
|
m_nSlotType = 0x30 # RenderSlotType_t
|
|
m_nInstanceStepRate = 0x34 # int32_t
|
|
|
|
class VsInputSignatureElement_t:
|
|
m_pName = 0x0 # char[64]
|
|
m_pSemantic = 0x40 # char[64]
|
|
m_pD3DSemanticName = 0x80 # char[64]
|
|
m_nD3DSemanticIndex = 0xC0 # int32_t
|
|
|
|
class VsInputSignature_t:
|
|
m_elems = 0x0 # CUtlVector<VsInputSignatureElement_t>
|