source:
orxonox.OLD/orxonox/branches/chris/src/environment.h
@
3098
Last change on this file since 3098 was 2058, checked in by chris, 20 years ago | |
---|---|
File size: 371 bytes |
Rev | Line | |
---|---|---|
[1883] | 1 | |
2 | ||
[2058] | 3 | |
[1896] | 4 | #ifndef ENVIRONEMENT_H |
5 | #define ENVIRONEMENT_H | |
[1883] | 6 | |
7 | ||
[2058] | 8 | #include "world_entity.h" |
[1883] | 9 | |
[2058] | 10 | class Environment : public WorldEntity { |
11 | ||
[1883] | 12 | private: |
13 | float xCor; | |
14 | float yCor; | |
15 | float zCor; | |
16 | ||
17 | float mountainTest[10][10]; | |
18 | ||
19 | public: | |
20 | Environment (); | |
21 | ~Environment (); | |
22 | ||
[2058] | 23 | void paint(void); |
[1883] | 24 | void drawEnvironment(void); |
25 | void setEnvPosition(void); | |
26 | void getEnvPosition(void); | |
27 | ||
28 | }; | |
29 | ||
30 | #endif |
Note: See TracBrowser
for help on using the repository browser.