mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
7052c5e91b
* Fixed eModelType enum value names * CBaseModelInfo: Changed min/max dimension types from fvector3 to fvector4 * CBaseModelInfo: Adjusted to actual size * Added datBase, fwRefAwareBase, fwRefAwareBaseImpl, fwExtensibleBase, fwExtension, fwExtensionContainer and pgBase classes * CPlayerGameStateDataNode: Updated fields and resized to actual size * CVehicleModelInfo: Resized because of modified CBaseModelInfo
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);
|
|
|
|
} |