From 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 22:24:42 +0500 Subject: Move game sources into src subdirectory --- game/client/keybind.hh | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 game/client/keybind.hh (limited to 'game/client/keybind.hh') diff --git a/game/client/keybind.hh b/game/client/keybind.hh deleted file mode 100644 index 8cf3c3c..0000000 --- a/game/client/keybind.hh +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef CLIENT_KEYBIND_HH -#define CLIENT_KEYBIND_HH 1 -#pragma once - -#include "core/config.hh" - -class ConfigKeyBind final : public IConfigValue { -public: - explicit ConfigKeyBind(void); - explicit ConfigKeyBind(int default_value); - virtual ~ConfigKeyBind(void) = default; - - virtual void set(const char* value) override; - virtual const char* get(void) const override; - - void set_key(int keycode); - int get_key(void) const; - - bool equals(int keycode) const; - -private: - const char* m_name; - int m_glfw_keycode; -}; - -#endif /* CLIENT_KEYBIND_HH */ -- cgit