mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2025-01-25 19:45:14 +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");
|