mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-27 11:34:14 +01:00
17 lines
252 B
C++
17 lines
252 B
C++
#pragma once
|
|
|
|
#include "Vehicle.h"
|
|
|
|
class CHeli : public CVehicle
|
|
{
|
|
public:
|
|
// 0x288
|
|
uint8 stuff[180];
|
|
|
|
CHeli(int, uint8);
|
|
CHeli* ctor(int, uint8);
|
|
|
|
static void SpecialHeliPreRender(void);
|
|
};
|
|
static_assert(sizeof(CHeli) == 0x33C, "CHeli: error");
|