Reorganize includes to match asm

Former-commit-id: 848752477e
This commit is contained in:
2022-07-18 18:42:58 -04:00
parent 6a471a6abe
commit bed1bb88de
56 changed files with 93 additions and 98 deletions

View File

@@ -0,0 +1,32 @@
#ifndef _IOBJECTSTORE_HPP
#define _IOBJECTSTORE_HPP
#include "types.h"
#include "rstl/rc_ptr.hpp"
typedef u32 CAssetId;
typedef u32 FourCC;
struct SObjectTag {
FourCC type;
CAssetId id;
SObjectTag(const SObjectTag& other) : type(other.type), id(other.id) {}
};
class IObjectStore;
class IObj;
class CVParamTransfer {
rstl::rc_ptr< void > x0_;
};
class CObjectReference {
u16 x0_refCount;
u16 x2_lockCount;
SObjectTag x4_objTag;
IObjectStore* xc_objectStore;
IObj* x10_object;
CVParamTransfer x14_params;
};
#endif