mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
24 lines
287 B
C
24 lines
287 B
C
|
/**
|
||
|
* @file data.h
|
||
|
* @brief NEX Data.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "RootObject.h"
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace nex
|
||
|
{
|
||
|
class Data : public nn::nex::RootObject
|
||
|
{
|
||
|
public:
|
||
|
Data();
|
||
|
|
||
|
virtual ~Data();
|
||
|
|
||
|
u8 _8;
|
||
|
};
|
||
|
};
|
||
|
};
|