mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 19:25:04 +00:00
16 lines
204 B
C
16 lines
204 B
C
|
/**
|
||
|
* @file memory.h
|
||
|
* @brief GFX Memory Pool.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace gfx
|
||
|
{
|
||
|
// todo: finish me!
|
||
|
template<typename T>
|
||
|
class TMemoryPool { };
|
||
|
};
|
||
|
};
|