You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
385 B
C++
22 lines
385 B
C++
#pragma once
|
|
|
|
#include "Entity.h"
|
|
|
|
class CBuilding : public CEntity
|
|
{
|
|
public:
|
|
CBuilding(void) {
|
|
m_type = ENTITY_TYPE_BUILDING;
|
|
bUsesCollision = true;
|
|
}
|
|
static void *operator new(size_t) throw();
|
|
static void operator delete(void*, size_t) throw();
|
|
|
|
void ReplaceWithNewModel(int32 id);
|
|
|
|
virtual bool GetIsATreadable(void) { return false; }
|
|
};
|
|
|
|
VALIDATE_SIZE(CBuilding, 0x64);
|
|
|