mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-20 03:53:27 +00:00
22 lines
278 B
C++
22 lines
278 B
C++
#ifndef __RETRO_IALLOCATOR_HPP__
|
|
#define __RETRO_IALLOCATOR_HPP__
|
|
|
|
#include "COsContext.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
namespace Common
|
|
{
|
|
|
|
class IAllocator
|
|
{
|
|
public:
|
|
virtual bool Initialize(COsContext&)=0;
|
|
virtual void Shutdown()=0;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __RETRO_IALLOCATOR_HPP__
|