mirror of
https://github.com/zeldaret/ss
synced 2026-06-23 08:59:51 -04:00
29 lines
452 B
C++
29 lines
452 B
C++
#ifndef NW4R_EF_HANDLE_H
|
|
#define NW4R_EF_HANDLE_H
|
|
#include "types_nw4r.h"
|
|
|
|
namespace nw4r
|
|
{
|
|
namespace ef
|
|
{
|
|
struct LinkedObject
|
|
{
|
|
char UNK_0x0[8];
|
|
LinkedObject * PTR_0x8;
|
|
};
|
|
|
|
struct HandleBase
|
|
{
|
|
LinkedObject * PTR_0x0;
|
|
LinkedObject * mPtr;
|
|
|
|
HandleBase();
|
|
HandleBase & operator=(const HandleBase &);
|
|
HandleBase & operator=(LinkedObject *);
|
|
bool IsValid() const;
|
|
LinkedObject * GetPtr() const;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif |