mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-18 09:15:13 +00:00
21 lines
320 B
C
21 lines
320 B
C
|
/**
|
||
|
* @file reference.h
|
||
|
* @brief Reference implementations for NEX.
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
#include "RootObject.h"
|
||
|
|
||
|
namespace nn
|
||
|
{
|
||
|
namespace nex
|
||
|
{
|
||
|
class RefCountedObject : public nn::nex::RootObject
|
||
|
{
|
||
|
public:
|
||
|
virtual ~RefCountedObject();
|
||
|
|
||
|
u32 _8;
|
||
|
};
|
||
|
};
|
||
|
};
|