添加项目文件。
This commit is contained in:
16
csgo2/sdk/handle/basehandle.h
Normal file
16
csgo2/sdk/handle/basehandle.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#include "../sdk.h"
|
||||
|
||||
class CEntityHandle
|
||||
{
|
||||
public:
|
||||
union
|
||||
{
|
||||
uint32_t m_Index;
|
||||
struct
|
||||
{
|
||||
uint32_t m_EntityIndex : 15;
|
||||
uint32_t m_Serial : 17;
|
||||
} m_Parts;
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user