1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-26 11:57:37 +00:00
re3/src/vehicles/Plane.h

18 lines
318 B
C
Raw Normal View History

2019-06-02 15:13:56 +00:00
#pragma once
#include "common.h"
2019-06-02 15:13:56 +00:00
#include "Vehicle.h"
class CPlane : public CVehicle
{
public:
// 0x288
uint8 stuff[20];
CPlane(int, uint8);
~CPlane(void);
CPlane* ctor(int, uint8);
void FlagToDestroyWhenNextProcessed() { bRemoveFromWorld = true; }
2019-06-02 15:13:56 +00:00
};
static_assert(sizeof(CPlane) == 0x29C, "CPlane: error");