bindings.toml, config/bindings.toml file

This commit is contained in:
MihailRis
2024-05-20 04:06:49 +03:00
parent 7fdacffe53
commit 66476ee642
11 changed files with 79 additions and 31 deletions
+2 -1
View File
@@ -2,11 +2,11 @@
#define WINDOW_EVENTS_HPP_
#include "input.hpp"
#include "../typedefs.hpp"
#include <string>
#include <vector>
#include <unordered_map>
#include "../typedefs.hpp"
inline constexpr short KEYS_BUFFER_SIZE = 1036;
@@ -51,6 +51,7 @@ public:
static std::string writeBindings();
static void loadBindings(const std::string& filename, const std::string& source);
static void loadBindingsToml(const std::string& filename, const std::string& source);
};
#endif // WINDOW_EVENTS_HPP_