Привет всем. Может кто-то подсказать, как переделать структуры из internal в external ?
C++:
struct CEntityIterator
{
auto Next()
{
return VIRTUAL<CEntity* (__thiscall*)(PVOID)>(this, 48)(this);
}
};
struct CEntity
{
EntityId GetId()
{
return VIRTUAL<EntityId(__thiscall*)(PVOID)>(this, 8)(this);
}
}
struct CEntitySystem
{
auto GetIEntityIterator()
{
return VIRTUAL<CEntityIterator* (__thiscall*)(PVOID)>(this, 168)(this);
}
};
Последнее редактирование: