mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-01 05:35:55 +00: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");
|