summaryrefslogtreecommitdiff
path: root/config.h
blob: 0f9ab5d45e7825ac9f175b780fbf8c3898d8d418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <unordered_map>

#include "command.h"

using namespace std;


using Keybindings = unordered_map<int,Command>;

extern Keybindings global_keybindings;