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
23
profile/3.3.5a-windows-386/include/map/CMapBaseObj.h
Normal file
23
profile/3.3.5a-windows-386/include/map/CMapBaseObj.h
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
#ifndef CMAPBASEOBJ_H
|
||||
#define CMAPBASEOBJ_H
|
||||
|
||||
DECLARE_STRUCT(CMapBaseObj);
|
||||
|
||||
#include "system/types.h"
|
||||
#include "map/CMapBaseObjLink.h"
|
||||
|
||||
struct CMapBaseObj
|
||||
{
|
||||
void** vtable; //0x00
|
||||
int32_t objectIndex; //0x04
|
||||
uint16_t type; //0x08
|
||||
uint16_t refCount; //0x0A
|
||||
int32_t unk_C; //0x0C
|
||||
|
||||
CMapBaseObj* prev; //0x10
|
||||
CMapBaseObj* next; //0x14
|
||||
|
||||
TSExplicitList_CMapBaseObjLink list; //0x18 - 0x24
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue