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