mirror of
https://github.com/AxioDL/PrimeAPI.git
synced 2026-03-30 11:38:46 -07:00
27 lines
372 B
C++
27 lines
372 B
C++
#ifndef COBJECTLIST_HPP
|
|
#define COBJECTLIST_HPP
|
|
|
|
#include <PrimeAPI.h>
|
|
|
|
class CEntity;
|
|
|
|
class SObjectListEntry
|
|
{
|
|
public:
|
|
CEntity* pEntity;
|
|
uint16 next;
|
|
uint16 prev;
|
|
};
|
|
|
|
class CObjectList
|
|
{
|
|
public:
|
|
uint32 vtable;
|
|
SObjectListEntry mEntries[1024];
|
|
uint32 mType;
|
|
uint16 mFirst;
|
|
uint16 mCount;
|
|
};
|
|
|
|
#endif //PRIME_PRACTICE_NATIVE_COBJECTLIST_HPP
|