mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-30 21:14:15 +01: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");
|