Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/physics/src/subprojects/particles/framework.h @ 4295

Last change on this file since 4295 was 4295, checked in by bensch, 19 years ago

orxonox/branches/physics: a better check for the data-directory

File size: 549 bytes
Line 
1#ifndef _FRAMEWORK_H
2#define _FRAMEWORK_H
3 
4#include "vector.h"
5#include "glincl.h"
6
7#define DATA_DIRECTORY "~/svn/data/"
8
9float rotatorP;
10float rotatorV;
11
12float dist;
13float zoomTo;
14
15Uint32 lastFrame;
16Uint32 currFrame;
17
18Vector dir;
19Vector up;
20
21float matQ[4][4];
22
23Vector M;
24Vector p1;
25Vector p2;
26Vector rotAxis;
27float rotAngle;
28Quaternion rotQ;
29Quaternion rotQlast;
30
31Uint8* keys; // This variable will be used in the keyboard routine
32bool mouse1Down;
33
34bool mainLoop();
35bool draw(float dt);
36float tick();
37bool keyHandler();
38
39#endif /* _FRAMEWORK_H */
Note: See TracBrowser for help on using the repository browser.