summaryrefslogtreecommitdiffhomepage
path: root/src/input.hpp
blob: 20bba64f36c25d71a854de06f97d1bcf47609d9d (plain)
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();
}