mirror of
https://gitlab.com/shinovon/re3-symbian.git
synced 2026-05-22 17:47:20 +03:00
17 lines
317 B
C++
17 lines
317 B
C++
#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);
|
|
|