summaryrefslogtreecommitdiffhomepage
path: root/src/input.hpp
blob: abaa6fcba01a0064f0534db21457da34fa678160 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

// external libs
#include "GLFW/glfw3.h"

namespace Input {
	void process(GLFWwindow *window);
	int get_mouse_x();
	int get_mouse_y();
	bool get_mouse_click();
}