mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 19:25:16 +00:00
33 lines
484 B
C
33 lines
484 B
C
|
/**
|
||
|
* @file api.h
|
||
|
* @brief GFX API version and typing.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace gfx
|
||
|
{
|
||
|
// passes both ApiType<4> and ApiVersion<8>
|
||
|
template<typename T, typename T2>
|
||
|
class ApiVariation
|
||
|
{
|
||
|
|
||
|
};
|
||
|
|
||
|
// usually passed as just a 4
|
||
|
template<int T>
|
||
|
class ApiType
|
||
|
{
|
||
|
|
||
|
};
|
||
|
|
||
|
// usually passed as just a 8
|
||
|
template<int T>
|
||
|
class ApiVersion
|
||
|
{
|
||
|
|
||
|
};
|
||
|
};
|
||
|
};
|