Last change
on this file since 1037 was
1024,
checked in by rgrieder, 17 years ago
|
merged input back into trunk
note: I have created an asylum with obsolete code, please check the files
|
File size:
695 bytes
|
Line | |
---|
1 | #ifndef _Model_H__ |
---|
2 | #define _Model_H__ |
---|
3 | |
---|
4 | #include "../OrxonoxPrereqs.h" |
---|
5 | |
---|
6 | #include "WorldEntity.h" |
---|
7 | #include "../tools/Mesh.h" |
---|
8 | |
---|
9 | namespace orxonox |
---|
10 | { |
---|
11 | |
---|
12 | class _OrxonoxExport Model : public WorldEntity |
---|
13 | { |
---|
14 | public: |
---|
15 | Model(); |
---|
16 | virtual ~Model(); |
---|
17 | virtual void loadParams(TiXmlElement* xmlElem); |
---|
18 | virtual void XMLPort(Element& xmlelement, bool loading); |
---|
19 | void setMesh(const std::string& meshname); |
---|
20 | bool create(); |
---|
21 | |
---|
22 | protected: |
---|
23 | void registerAllVariables(); |
---|
24 | |
---|
25 | private: |
---|
26 | std::string meshSrc_; |
---|
27 | Mesh mesh_; |
---|
28 | }; |
---|
29 | } |
---|
30 | |
---|
31 | #endif /* _Model_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.