metaforce/Runtime/Common/CGameAllocator.cpp

19 lines
177 B
C++
Raw Normal View History

2015-08-16 22:26:58 -07:00
#include "CGameAllocator.hpp"
namespace Retro
{
namespace Common
{
2015-08-16 22:26:58 -07:00
bool CGameAllocator::Initialize(COsContext&)
{
return true;
}
void CGameAllocator::Shutdown()
{
}
}
}