mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
feat(profile): CMapBaseObjLink structures
This commit is contained in:
parent
57430d2995
commit
a36752d3a0
12 changed files with 5348 additions and 124 deletions
24
profile/3.3.5a-windows-386/include/map/CMapBaseObjLink.h
Normal file
24
profile/3.3.5a-windows-386/include/map/CMapBaseObjLink.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue