prime/include/Kyoto/CMemorySys.hpp
Luke Street 329618c585 More main progress; tons of headers & stuff
Former-commit-id: a6e365791b35de8a1c056db8a4833150450c84d9
2022-09-13 00:28:02 -04:00

21 lines
305 B
C++

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