mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 11:15:04 +00:00
27 lines
No EOL
328 B
C++
27 lines
No EOL
328 B
C++
/**
|
|
* @file device.h
|
|
* @brief Device implementation for GFX.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace nn
|
|
{
|
|
namespace gfx
|
|
{
|
|
class DeviceInfo
|
|
{
|
|
public:
|
|
|
|
u64 mInfo; // _0
|
|
};
|
|
|
|
template<typename T>
|
|
class TDevice
|
|
{
|
|
|
|
};
|
|
};
|
|
}; |