(no commit message)
[atyndall/cits2231.git] / scene.h
1 /**
2  * Main File Header
3  * @author Ashley Tyndall (20915779), Jenna de la Harpe (20367932)
4  */
5
6 #ifndef SCENE_H
7 #define SCENE_H
8
9 void processMainEvents(int id);
10 void processMaterialEvents(int id);
11 void processLightEvents(int id);
12 void processObjectEvents(int id);
13 void processTextureEvents(int id);
14 void processGTextureEvents(int id);
15
16 void makeMenu();
17
18 void windowReshape(int w, int h);
19 void mouse(int button, int state, int x, int y);
20 void keyboard(unsigned char key, int x, int y);
21 void motion(int x, int y);
22
23 void display();
24 void init();
25 int main(int argc, char **argv);
26
27 #endif  /* SCENE_H */
28

UCC git Repository :: git.ucc.asn.au