mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-21 18:19:17 +00:00
Codebase refactor
This commit is contained in:
18
Runtime/IAllocator.hpp
Normal file
18
Runtime/IAllocator.hpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef __RETRO_IALLOCATOR_HPP__
|
||||
#define __RETRO_IALLOCATOR_HPP__
|
||||
|
||||
#include "COsContext.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
|
||||
class IAllocator
|
||||
{
|
||||
public:
|
||||
virtual bool Initialize(COsContext&)=0;
|
||||
virtual void Shutdown()=0;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __RETRO_IALLOCATOR_HPP__
|
||||
Reference in New Issue
Block a user