mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-23 06:57:34 +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
13 lines
158 B
C++
13 lines
158 B
C++
#pragma once
|
|
|
|
namespace rage
|
|
{
|
|
|
|
class datBase
|
|
{
|
|
public:
|
|
virtual ~datBase() = default;
|
|
}; //Size: 0x0008
|
|
static_assert(sizeof(datBase) == 0x8);
|
|
|
|
} |