2022-08-20 13:17:32 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "datBase.hpp"
|
|
|
|
#include "fwRefAwareBaseImpl.hpp"
|
|
|
|
|
|
|
|
namespace rage
|
|
|
|
{
|
|
|
|
|
|
|
|
class fwRefAwareBase : public fwRefAwareBaseImpl<datBase>
|
2022-11-08 22:11:50 +01:00
|
|
|
{
|
|
|
|
};
|
2022-08-20 13:17:32 -04:00
|
|
|
static_assert(sizeof(fwRefAwareBase) == 0x10);
|
|
|
|
|
|
|
|
}
|