mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 03:05:04 +00:00
26 lines
No EOL
412 B
C++
26 lines
No EOL
412 B
C++
/**
|
|
* @file NVNimage.h
|
|
* @brief Defines a class for representing a NVN image.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace agl
|
|
{
|
|
namespace driver
|
|
{
|
|
class NVNimage_
|
|
{
|
|
public:
|
|
NVNimage_();
|
|
NVNimage_(agl::driver::NVNimage_ const &);
|
|
~NVNimage_();
|
|
|
|
void updateImageId(s32 id);
|
|
|
|
u64 mImageId; // _0
|
|
};
|
|
};
|
|
}; |