source:
orxonox.OLD/orxonox/trunk/core/environment.h
@
1932
Last change on this file since 1932 was 1904, checked in by patrick, 20 years ago | |
---|---|
File size: 366 bytes |
Line | |
---|---|
1 | |
2 | #include <GL/glut.h> |
3 | #include <stdlib.h> |
4 | |
5 | #ifndef ENVIRONEMENT_H |
6 | #define ENVIRONEMENT_H |
7 | |
8 | #include "data_tank.h" |
9 | |
10 | class Environment { |
11 | |
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 | |
23 | void drawEnvironment(void); |
24 | void setEnvPosition(void); |
25 | void getEnvPosition(void); |
26 | |
27 | }; |
28 | |
29 | #endif |
Note: See TracBrowser
for help on using the repository browser.