mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 19:25:16 +00:00
24 lines
371 B
C
24 lines
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();
|
||
|
};
|
||
|
};
|
||
|
};
|