mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-25 09:11:50 +01:00
12 lines
170 B
C++
12 lines
170 B
C++
#pragma once
|
|
|
|
#include "Ped.h"
|
|
|
|
class CPlayerPed : public CPed
|
|
{
|
|
public:
|
|
// 0x53C
|
|
uint8 stuff[180];
|
|
};
|
|
static_assert(sizeof(CPlayerPed) == 0x5F0, "CPlayerPed: error");
|