mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-03 16:13:21 +08:00
14 lines
212 B
C++
14 lines
212 B
C++
|
#pragma once
|
||
|
|
||
|
#include "datBase.hpp"
|
||
|
#include "fwRefAwareBaseImpl.hpp"
|
||
|
|
||
|
namespace rage
|
||
|
{
|
||
|
|
||
|
class fwRefAwareBase : public fwRefAwareBaseImpl<datBase>
|
||
|
{
|
||
|
};
|
||
|
static_assert(sizeof(fwRefAwareBase) == 0x10);
|
||
|
|
||
|
}
|