summaryrefslogtreecommitdiffstats
path: root/src/buildings/Treadable.h
blob: 9e8959699b0eb714d345254b46ee6d1cc2070a03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "Building.h"

class CTreadable : public CBuilding
{
public:
	static void *operator new(size_t) throw();
	static void operator delete(void*, size_t) throw();

	int16 m_nodeIndices[2][12];	// first car, then ped

	bool GetIsATreadable(void) { return true; }
};

VALIDATE_SIZE(CTreadable, 0x94);