1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-18 05:23:12 +00:00
re3/src/entities/Treadable.h

20 lines
372 B
C
Raw Normal View History

2019-05-15 14:52:37 +00:00
#pragma once
#include "Building.h"
class CTreadable : public CBuilding
{
public:
static void *operator new(size_t);
static void operator delete(void*, size_t);
#ifndef MIAMI
2019-08-09 17:42:18 +00:00
int16 m_nodeIndices[2][12]; // first car, then ped
#endif
2019-05-15 14:52:37 +00:00
bool GetIsATreadable(void) { return true; }
2019-05-15 14:52:37 +00:00
};
#ifndef MIAMI
2019-05-15 14:52:37 +00:00
static_assert(sizeof(CTreadable) == 0x94, "CTreadable: error");
#endif