mirror of
https://github.com/halpz/re3.git
synced 2025-02-25 18:52:12 +00: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");
|