mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-18 22:05:44 +01:00
the comment was using single-line comments, I prefer multi-line comments now. This bothered me for much too long.
14 lines
440 B
C
14 lines
440 B
C
/* Copyright (c) 2025 Quinn
|
|
* Licensed under the MIT Licence. See LICENSE for details */
|
|
#include "input.h"
|
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
void key_callback(GLFWwindow *win, int key, int scancode, int action, int mods) {
|
|
(void)win, (void)key, (void)scancode, (void)action, (void)mods; // make the compiler shut up as this is fine
|
|
#ifndef NDEBUG
|
|
if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS)
|
|
glfwSetWindowShouldClose(win, 1);
|
|
#endif
|
|
}
|