/*! * @file building.h * Definition of the Building, that handles the Display of an atmosphere for orxonox. */ #ifndef _BUILDING_H #define _BUILDING_H /* INCLUDES */ #include "world_entity.h" /* FORWARD DECLARATION */ //! A Class to handle a Building class Building : public WorldEntity { public: Building(const TiXmlElement* root); virtual ~Building(); }; #endif /* _BUILDING_H */