Reorganize includes to match asm

This commit is contained in:
2022-07-18 18:42:58 -04:00
parent 69ddd71fc8
commit 848752477e
56 changed files with 93 additions and 98 deletions

View File

@@ -0,0 +1,24 @@
#ifndef _CSIMPLEPOOL_HPP
#define _CSIMPLEPOOL_HPP
#include "types.h"
#include "rstl/map.hpp"
#include "IObjectStore.hpp"
class CSimplePool {
public:
virtual ~CSimplePool() {}
private:
u8 x4_;
u8 x5_;
rstl::map< unkptr, unkptr > x8_resources;
unkptr x18_factory;
CVParamTransfer x1c_paramXfr;
};
extern CSimplePool* gpSimplePool;
#endif