GLFW: Implemented EmuWindow touchpad support.

This commit is contained in:
bunnei
2015-03-08 03:19:33 -04:00
parent 543232436f
commit dd73217ae3
2 changed files with 26 additions and 0 deletions

View File

@ -27,6 +27,10 @@ public:
static void OnKeyEvent(GLFWwindow* win, int key, int scancode, int action, int mods);
static void OnMouseButtonEvent(GLFWwindow* window, int button, int action, int mods);
static void OnCursorPosEvent(GLFWwindow* window, double x, double y);
/// Whether the window is still open, and a close request hasn't yet been sent
const bool IsOpen();