mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-10 20:49:16 +00:00
12 lines
165 B
C
12 lines
165 B
C
|
#pragma once
|
||
|
|
||
|
#include "Vehicle.h"
|
||
|
|
||
|
class CPlane : public CVehicle
|
||
|
{
|
||
|
public:
|
||
|
// 0x288
|
||
|
uint8 stuff[20];
|
||
|
};
|
||
|
static_assert(sizeof(CPlane) == 0x29C, "CPlane: error");
|