summaryrefslogtreecommitdiffstats
path: root/src/entities/Train.h
blob: e591239b1bc6c1a260b9668b7001ed77c91d873f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "Vehicle.h"

class CTrain : public CVehicle
{
public:
	// 0x288
	uint8 stuff[92];
};
static_assert(sizeof(CTrain) == 0x2E4, "CTrain: error");