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
13 lines
137 B
C++
13 lines
137 B
C++
#pragma once
|
|
|
|
namespace rage
|
|
{
|
|
|
|
template <typename T>
|
|
class fwRefAwareBaseImpl : public T
|
|
{
|
|
private:
|
|
void *m_ref; // 0x08
|
|
};
|
|
|
|
} |