Phillip Stephens 503020b195 Match and link GameObjectLists.cpp
Former-commit-id: b57ec9605eaa4cfd1769093a70d67849e9542028
2022-10-13 22:58:49 -07:00

22 lines
275 B
C++

#ifndef _CAIFUNCMAP
#define _CAIFUNCMAP
#include "types.h"
enum EStateMsg {
kStateMsg_Activate = 0,
kStateMsg_Update = 1,
kStateMsg_Deactivate = 2,
};
class CAiFuncMap {
public:
CAiFuncMap();
~CAiFuncMap();
private:
uchar pad[0x20];
};
#endif // _CAIFUNCMAP