2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-20 05:53:27 +00:00
metaforce/Runtime/Common/CGameAllocator.hpp

22 lines
294 B
C++

#ifndef __RETRO_CGAMEALLOCATOR_HPP__
#define __RETRO_CGAMEALLOCATOR_HPP__
#include "IAllocator.hpp"
namespace Retro
{
namespace Common
{
class CGameAllocator : public IAllocator
{
public:
bool Initialize(COsContext&);
void Shutdown();
};
}
}
#endif // __RETRO_CGAMEALLOCATOR_HPP__