2016-09-06 13:15:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
extern void windowResize(GLFWwindow * window, int width, int height);
|
|
|
|
|
|
|
|
extern void mouseButton(GLFWwindow *window, int button, int action, int mod);
|
|
|
|
|
|
|
|
extern void mouseMove(GLFWwindow *window, double xpos, double ypos);
|
|
|
|
|
|
|
|
extern void mouseWheel(GLFWwindow *window, double xoffset, double yoffset);
|
|
|
|
|
2016-11-12 11:14:45 +00:00
|
|
|
extern void keyPress(GLFWwindow *window, int key, int scancode, int action, int mods);
|
|
|
|
|
|
|
|
extern void dragNdrop(GLFWwindow* window, int count, const char** paths);
|