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