mirror of https://github.com/AxioDL/metaforce.git
14 lines
235 B
C++
14 lines
235 B
C++
|
#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__
|