prime/include/Kyoto/Alloc/CMemorySys.hpp
Phillip Stephens 58d095dcd4 Match and link CMemory
Former-commit-id: 16d013b419b7247d0da31211e064e6800041437c
2022-10-12 01:07:35 -07:00

21 lines
313 B
C++

#ifndef _CMEMORYSYS
#define _CMEMORYSYS
#include "types.h"
#include "Kyoto/Alloc/CMemory.hpp"
#include "Kyoto/Alloc/IAllocator.hpp"
class CMemorySys {
public:
CMemorySys(COsContext&, IAllocator&);
~CMemorySys();
static IAllocator& GetGameAllocator();
private:
uchar x0_unk;
};
#endif // _CMEMORYSYS