re3-mirror/src/buildings/Treadable.h

18 lines
317 B
C
Raw Permalink Normal View History

2019-05-15 15:52:37 +01:00
#pragma once
#include "Building.h"
class CTreadable : public CBuilding
{
public:
2021-06-25 22:27:12 +01:00
static void *operator new(size_t) throw();
static void operator delete(void*, size_t) throw();
2019-05-15 15:52:37 +01:00
2019-08-09 18:42:18 +01:00
int16 m_nodeIndices[2][12]; // first car, then ped
2019-05-15 15:52:37 +01:00
bool GetIsATreadable(void) { return true; }
2019-05-15 15:52:37 +01:00
};
2020-05-10 14:54:37 +01:00
VALIDATE_SIZE(CTreadable, 0x94);