Last change
on this file since 1979 was
1956,
checked in by bensch, 20 years ago
|
orxonox/trunk: now the Trunk should be merged with the new Makefile. Hopefully it works
|
File size:
366 bytes
|
Rev | Line | |
---|
[1883] | 1 | |
---|
| 2 | #include <GL/glut.h> |
---|
| 3 | #include <stdlib.h> |
---|
| 4 | |
---|
[1896] | 5 | #ifndef ENVIRONEMENT_H |
---|
| 6 | #define ENVIRONEMENT_H |
---|
[1883] | 7 | |
---|
[1904] | 8 | #include "data_tank.h" |
---|
[1883] | 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.