mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2025-01-12 01:49:09 +01:00
18 lines
400 B
C++
18 lines
400 B
C++
#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");
|