source:
orxonox.OLD/orxonox/branches/dave/src/skybox.h
@
3410
Last change on this file since 3410 was 3409, checked in by dave, 20 years ago | |
---|---|
File size: 324 bytes |
Rev | Line | |
---|---|---|
[3407] | 1 | #ifndef _SKYBOX_H |
2 | #define _SKYBOX_H | |
[3408] | 3 | #include "p_node.h" |
[3407] | 4 | #include "world_entity.h" |
5 | ||
[3408] | 6 | class Skybox: public PNode |
[3407] | 7 | { |
8 | ||
9 | ||
10 | private: | |
11 | GLUquadricObj *sphereObj; | |
[3409] | 12 | float a,b,c; |
[3408] | 13 | |
14 | ||
[3407] | 15 | |
16 | public: | |
17 | Skybox(); | |
18 | ~Skybox(); | |
19 | ||
20 | ||
[3409] | 21 | void updatePosition(float x,float y,float z); |
22 | void draw(); | |
[3408] | 23 | |
24 | ||
25 | ||
[3409] | 26 | |
27 | ||
[3407] | 28 | }; |
29 | ||
30 | #endif | |
31 | ||
32 |
Note: See TracBrowser
for help on using the repository browser.