metaforce/Runtime/CGameAllocator.hpp

19 lines
273 B
C++
Raw Normal View History

2015-08-17 05:26:58 +00:00
#ifndef __RETRO_CGAMEALLOCATOR_HPP__
#define __RETRO_CGAMEALLOCATOR_HPP__
#include "IAllocator.hpp"
namespace Retro
{
2015-08-17 05:26:58 +00:00
class CGameAllocator : public IAllocator
{
public:
bool Initialize(COsContext&);
void Shutdown();
};
}
2015-08-17 05:26:58 +00:00
#endif // __RETRO_CGAMEALLOCATOR_HPP__