mirror of
https://github.com/YimMenu/RDR-Classes.git
synced 2024-12-22 14:37:30 +08:00
ca56c5acdd
* feat(metric): add rlMetric * fix(metric): serializer fix * feat(tls): add tlsContext * feat(fwEntity): add entity classes * fix: add import * fix(vector): constexpr ctors * feat(ped): add CPed ---------
11 lines
225 B
C++
11 lines
225 B
C++
#pragma once
|
|
#include "datBase.hpp"
|
|
#include "fwRefAwareBaseImpl.hpp"
|
|
|
|
namespace rage
|
|
{
|
|
class fwRefAwareBase : public fwRefAwareBaseImpl<datBase>
|
|
{
|
|
};
|
|
static_assert(sizeof(fwRefAwareBase) == 0x10);
|
|
} |