Last change
on this file since 616 was
576,
checked in by landauf, 17 years ago
|
added Mesh and Model (doesn't work yet, but i don't want to have merge conflicts all the time )
|
File size:
381 bytes
|
Line | |
---|
1 | #ifndef _Model_H__ |
---|
2 | #define _Model_H__ |
---|
3 | |
---|
4 | #include "WorldEntity.h" |
---|
5 | #include "Mesh.h" |
---|
6 | #include "../../tinyxml/tinyxml.h" |
---|
7 | |
---|
8 | namespace orxonox |
---|
9 | { |
---|
10 | class Model : public WorldEntity |
---|
11 | { |
---|
12 | public: |
---|
13 | Model(); |
---|
14 | ~Model(); |
---|
15 | virtual void loadParams(TiXmlElement* xmlElem); |
---|
16 | |
---|
17 | private: |
---|
18 | Mesh mesh_; |
---|
19 | }; |
---|
20 | } |
---|
21 | |
---|
22 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.