1 2 3 4 5 6 7 8 9
#pragma once #include "GLFW/glfw3.h" namespace Input { void process(GLFWwindow *window); int get_mouse_x(); int get_mouse_y(); bool get_mouse_click(); }