mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-28 03:54:15 +01:00
19 lines
364 B
C++
19 lines
364 B
C++
#pragma once
|
|
|
|
#include "common.h"
|
|
#include "Vehicle.h"
|
|
|
|
class CPlane : public CVehicle
|
|
{
|
|
public:
|
|
// 0x288
|
|
uint8 stuff[20];
|
|
|
|
CPlane(int, uint8);
|
|
~CPlane(void);
|
|
CPlane* ctor(int, uint8);
|
|
void dtor(void) { this->CPlane::~CPlane(); }
|
|
void FlagToDestroyWhenNextProcessed() { bRemoveFromWorld = true; }
|
|
};
|
|
static_assert(sizeof(CPlane) == 0x29C, "CPlane: error");
|