metaforce/Runtime/IAllocator.hpp

14 lines
235 B
C++
Raw Normal View History

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