summaryrefslogtreecommitdiff
path: root/input.h
blob: 854b2c008f15cf65d9e2da7eb0accb502ecec44c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef INPUT_H
#define INPUT_H

#include <SFML/Window/Input.hpp>

namespace Key {
	using namespace sf::Key;
}

class Input {
	public:
		static bool key_pressed(Key::Code key);
};

#endif