mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 00:18:59 +00:00
11 lines
165 B
C++
11 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");
|