mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
24 lines
424 B
C
24 lines
424 B
C
|
|
#ifndef CMAPBASEOBJLINK_H
|
||
|
|
#define CMAPBASEOBJLINK_H
|
||
|
|
|
||
|
|
DECLARE_STRUCT(CMapBaseObjLink);
|
||
|
|
|
||
|
|
#include "system/types.h"
|
||
|
|
#include "storm/list.h"
|
||
|
|
|
||
|
|
STORM_TS_LIST(CMapBaseObjLink);
|
||
|
|
|
||
|
|
struct CMapBaseObj;
|
||
|
|
|
||
|
|
struct CMapBaseObjLink
|
||
|
|
{
|
||
|
|
uint32_t objectIndex; //0x00
|
||
|
|
|
||
|
|
CMapBaseObj* owner; //0x04
|
||
|
|
CMapBaseObj* ref; //0x08
|
||
|
|
|
||
|
|
TSLink_CMapBaseObjLink refLink; //0x0C - 0x14
|
||
|
|
TSLink_CMapBaseObjLink ownerLink; //0x14 - 0x1C
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|