mirror of https://github.com/zeldaret/botw.git
21 lines
345 B
C++
21 lines
345 B
C++
/**
|
|
* @file dynamic.h
|
|
* @brief NEX Dyamnic Runtime.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <nn/nex/RootObject.h>
|
|
|
|
namespace nn {
|
|
namespace nex {
|
|
class DynamicRunTimeInterface : public nn::nex::RootObject {
|
|
public:
|
|
DynamicRunTimeInterface();
|
|
|
|
virtual ~DynamicRunTimeInterface();
|
|
|
|
u64* GetInstance();
|
|
};
|
|
}; // namespace nex
|
|
}; // namespace nn
|