36 files changed, 332 insertions, 176 deletions
diff --git a/src/controller/callbacks/mouse.h b/src/controller/callbacks/mouse.h new file mode 100644 index 0000000..2dfc838 --- a/dev/null +++ b/src/controller/callbacks/mouse.h | |||
@@ -0,0 +1,9 @@ | |||
1 | #ifndef MOUSE_H | ||
2 | #define MOUSE_H | ||
3 | |||
4 | /* | ||
5 | * Handle events generated by the mouse. | ||
6 | */ | ||
7 | void mouse (int button, int state, int x, int y); | ||
8 | |||
9 | #endif // MOUSE_H | ||