Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Version 1
- static void keyCallback(GLFWwindow *win, int key, int scancode, int action,
- int mods);
- // Version 2
- static void keyCallback(
- GLFWwindow* win, int key, int scancode, int action, int mods);
- // Version 3
- static void
- keyCallback(GLFWwindow* win, int key, int scancode, int action, int mods);
- // Version 4
- static void keyCallback(GLFWwindow* win,
- int key,
- int scancode,
- int action,
- int mods);
Advertisement
Add Comment
Please, Sign In to add comment