summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-01-08 22:43:35 +0100
committertomsmeding <tom.smeding@gmail.com>2017-01-08 22:43:35 +0100
commit4addb711c6a1a282b0a59bf03e850a86ba2ead69 (patch)
treef7e9c4a594d1c4fa41a6ebc6371279762a9a580a /config.h
Initial
Diffstat (limited to 'config.h')
-rw-r--r--config.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..0f9ab5d
--- /dev/null
+++ b/config.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <unordered_map>
+
+#include "command.h"
+
+using namespace std;
+
+
+using Keybindings = unordered_map<int,Command>;
+
+extern Keybindings global_keybindings;