mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 17:49:16 +01:00
12 lines
165 B
C++
12 lines
165 B
C++
#pragma once
|
|
|
|
#include "Vehicle.h"
|
|
|
|
class CTrain : public CVehicle
|
|
{
|
|
public:
|
|
// 0x288
|
|
uint8 stuff[92];
|
|
};
|
|
static_assert(sizeof(CTrain) == 0x2E4, "CTrain: error");
|