2019-06-02 15:13:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-30 10:59:55 +00:00
|
|
|
#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;
|
2019-06-30 10:59:55 +00:00
|
|
|
|
|
|
|
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");
|