summaryrefslogtreecommitdiffstats
path: root/src/entities/Treadable.h
blob: 2194638d4a892332257f17afc083208f8bf56df2 (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);
	static void operator delete(void*, size_t);

	int16 m_nodeIndicesCars[12];
	int16 m_nodeIndicesPeds[12];

	virtual bool GetIsATreadable(void) { return true; }
	void dtor(void) { this->CTreadable::~CTreadable(); }
};
static_assert(sizeof(CTreadable) == 0x94, "CTreadable: error");