mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2025-02-17 10:36:21 +01:00
12 lines
163 B
C
12 lines
163 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "Vehicle.h"
|
||
|
|
||
|
class CBoat : public CVehicle
|
||
|
{
|
||
|
public:
|
||
|
// 0x288
|
||
|
uint8 stuff[508];
|
||
|
};
|
||
|
static_assert(sizeof(CBoat) == 0x484, "CBoat: error");
|