Skip to content

Commit

Permalink
Fix moho.h
Browse files Browse the repository at this point in the history
  • Loading branch information
KionX committed Feb 3, 2024
1 parent 1ccc1f4 commit be76780
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions section/include/moho.h
Expand Up @@ -71,7 +71,9 @@ VALIDATE_SIZE(list<unk_t>, 0xC)

template<typename T>
struct linked_list
{ // ~0x8 bytes
{ // 0x8 bytes
T *next;
T *prev;
};

struct moho_set
Expand Down Expand Up @@ -118,10 +120,8 @@ struct Vector4f
};

struct RObject
{ // 0xC bytes
{ // 0x4 bytes
void *vtable;
void *unk1;
void *unk2;
};

template <int T, int TInfo>
Expand All @@ -132,6 +132,7 @@ struct ObjectType {

struct CScriptObject : RObject
{//0x004C6F8A, 0x34 bytes
linked_list<CScriptObject> ll;
LuaObject UserData;
LuaObject Table;
};
Expand Down

0 comments on commit be76780

Please sign in to comment.