Last change
on this file since 1977 was
1883,
checked in by patrick, 21 years ago
|
orxonox/trunk: added envoronment eg. little mountain - its time to talk about further development…
|
File size:
342 bytes
|
Line | |
---|
1 | |
---|
2 | #include <GL/glut.h> |
---|
3 | #include <stdlib.h> |
---|
4 | |
---|
5 | #ifndef PROTO_CLASS_H |
---|
6 | #define PROTO_CLASS_H |
---|
7 | |
---|
8 | |
---|
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.