mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-12 03:01:17 +00:00
13 lines
220 B
C++
13 lines
220 B
C++
#ifndef BUILDINGENTITY_H
|
|
#define BUILDINGENTITY_H
|
|
|
|
#include "legoentity.h"
|
|
|
|
class BuildingEntity : public LegoEntity
|
|
{
|
|
public:
|
|
BuildingEntity();
|
|
virtual ~BuildingEntity(); // vtable+0x0
|
|
};
|
|
|
|
#endif // BUILDINGENTITY_H
|