Line | |
---|
1 | /*! |
---|
2 | * @file building.h |
---|
3 | * Definition of the Building, that handles the Display of an atmosphere for orxonox. |
---|
4 | */ |
---|
5 | |
---|
6 | #ifndef _BUILDING_H |
---|
7 | #define _BUILDING_H |
---|
8 | |
---|
9 | /* INCLUDES */ |
---|
10 | #include "world_entity.h" |
---|
11 | |
---|
12 | /* FORWARD DECLARATION */ |
---|
13 | |
---|
14 | //! A Class to handle a Building |
---|
15 | class Building : public WorldEntity |
---|
16 | { |
---|
17 | ObjectListDeclaration(Building); |
---|
18 | public: |
---|
19 | Building(const TiXmlElement* root); |
---|
20 | |
---|
21 | virtual ~Building(); |
---|
22 | |
---|
23 | }; |
---|
24 | |
---|
25 | #endif /* _BUILDING_H */ |
---|
26 | |
---|
27 | |
---|
28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.