1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-29 10:47:06 +00:00
re3/src/vehicles/Plane.h

28 lines
522 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
2019-07-16 15:03:37 +00:00
int16 m_wIndex;
int16 field_650;
int16 m_wNextPathNode;
char field_654;
char field_655;
float field_656;
int m_nFrameWhenHit;
char m_bHasBeenHit;
char m_bIsIncomingCesna;
char m_bIsDropoffCesna;
char field_667;
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");