blob: 35128f46a4598d1fc703aa9cfa7b529e810fe6cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Ped.h"
class CPlayerPed : public CPed
{
public:
// 0x53C
uint8 stuff[180];
};
static_assert(sizeof(CPlayerPed) == 0x5F0, "CPlayerPed: error");
|