1
0
mirror of https://github.com/td512/re3.git synced 2026-02-13 23:53:56 +00:00
Files
td512.re3/src/entities/Boat.h
2019-06-02 17:13:56 +02:00

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");