mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
24 lines
No EOL
371 B
C++
24 lines
No EOL
371 B
C++
/**
|
|
* @file dynamic.h
|
|
* @brief NEX Dyamnic Runtime.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "RootObject.h"
|
|
|
|
namespace nn
|
|
{
|
|
namespace nex
|
|
{
|
|
class DynamicRunTimeInterface : public nn::nex::RootObject
|
|
{
|
|
public:
|
|
DynamicRunTimeInterface();
|
|
|
|
virtual ~DynamicRunTimeInterface();
|
|
|
|
u64* GetInstance();
|
|
};
|
|
};
|
|
}; |