*in progress*
[winnie] / src / event.h
index e4ac286..a51113f 100644 (file)
@@ -5,7 +5,7 @@ class Window;
 
 typedef void (*DisplayFuncType)(Window* win);
 typedef void (*KeyboardFuncType)(Window* win, int key, bool pressed);
-typedef void (*MouseButtonFuncType)(Window *win, int bn, bool pressed);
+typedef void (*MouseButtonFuncType)(Window *win, int bn, bool pressed, int x, int y);
 typedef void (*MouseMotionFuncType)(Window *win, int x, int y);
 
 struct Callbacks {