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

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

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