mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
21 lines
No EOL
320 B
C++
21 lines
No EOL
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;
|
|
};
|
|
};
|
|
}; |