MTek-GDL 0.100.4-muffintrap
Loading...
Searching...
No Matches
mgdl-pc-input.h
1
2#pragma once
3
5
6extern WiiController glutController;
7
8extern "C"
9{
10 void keyboardUp(unsigned char key, int x, int y);
11 void keyboardDown(unsigned char key, int x, int y);
12 void specialKeyUp(int key, int x, int y);
13 void specialKeyDown(int key, int x, int y);
14 void mouseKey(int button, int state, int x, int y);
15 void mouseMove(int x, int y);
16}
Header for the controller class.
Struct representing the Wii controller.
Definition mgdl-controller.h:41