2011-10-19 01:10:15 +02:00
|
|
|
#ifndef _INPUT_H
|
|
|
|
#define _INPUT_H
|
|
|
|
|
|
|
|
void moveCameraPosition(float direction);
|
|
|
|
void moveCameraAngle(float angle);
|
|
|
|
|
|
|
|
void keyboard(unsigned char key, int x, int y);
|
|
|
|
void keyboard_special(int key, int x, int y);
|
|
|
|
|
2011-10-30 23:55:53 +01:00
|
|
|
void mouse(int button, int state, int x, int y);
|
|
|
|
|
2011-10-19 01:10:15 +02:00
|
|
|
#endif
|
|
|
|
|