1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-05 08:26:28 +00:00

Eliminates a large number of instance of end-of-line tabs.

This commit is contained in:
Thomas Harte
2017-11-07 22:51:06 -05:00
parent 09c855a659
commit f95515ae81
20 changed files with 34 additions and 34 deletions

View File

@@ -21,7 +21,7 @@ namespace Inputs {
class Keyboard {
public:
Keyboard();
enum class Key {
Escape, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, PrintScreen, ScrollLock, Pause,
BackTick, k1, k2, k3, k4, k5, k6, k7, k8, k9, k0, Hyphen, Equals, BackSpace,
@@ -55,7 +55,7 @@ class Keyboard {
std::vector<bool> key_states_;
Delegate *delegate_ = nullptr;
};
}
#endif /* Keyboard_hpp */