mirror of
https://github.com/CookiePLMonster/SilentPatch.git
synced 2024-11-22 13:32:36 +01:00
17 lines
299 B
C++
17 lines
299 B
C++
#pragma once
|
|
|
|
#include <rwcore.h>
|
|
#include <rpworld.h>
|
|
|
|
class CVehicleModelInfo
|
|
{
|
|
private:
|
|
uint8_t __pad1[60];
|
|
unsigned int m_dwType;
|
|
uint8_t __pad2[308];
|
|
|
|
public:
|
|
RwFrame* GetExtrasFrame( RpClump* clump );
|
|
};
|
|
|
|
static_assert(sizeof(CVehicleModelInfo) == 0x174, "Wrong size: CvehicleModelInfo"); |