mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00
19 lines
269 B
C++
19 lines
269 B
C++
![]() |
#pragma once
|
||
|
#include "base.hpp"
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
template <typename T>
|
||
|
class fwRefAwareBaseImpl : public T
|
||
|
{
|
||
|
private:
|
||
|
void *m_ref; // 0x08
|
||
|
};
|
||
|
|
||
|
class fwRefAwareBase : public fwRefAwareBaseImpl<datBase>
|
||
|
{
|
||
|
};
|
||
|
|
||
|
static_assert(sizeof(fwRefAwareBase) == 0x10);
|
||
|
}
|