SuperMarioOdysseyOnline/include/nn/gfx/memory.h

16 lines
204 B
C
Raw Normal View History

2022-06-16 21:33:18 +00:00
/**
* @file memory.h
* @brief GFX Memory Pool.
*/
#pragma once
namespace nn
{
namespace gfx
{
// todo: finish me!
template<typename T>
class TMemoryPool { };
};
};