]> git.lizzy.rs Git - minetest.git/blobdiff - src/keycode.h
Mapgen: Remove '#include treegen.h' from non-mgv6 mapgens
[minetest.git] / src / keycode.h
index 65f04d8d738aade49277d0748c2114d18dc23ad6..4d66cf7b5df2a02545030665e9f897293de83646 100644 (file)
@@ -21,6 +21,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #define KEYCODE_HEADER
 
 #include "irrlichttypes.h"
+#include "Keycodes.h"
 #include <IEventReceiver.h>
 #include <string>
 
@@ -43,8 +44,6 @@ class KeyPress
 
        const char *sym() const;
        const char *name() const;
-
-       std::string debug() const;
 protected:
        static bool valid_kcode(irr::EKEY_CODE k)
        {
@@ -57,6 +56,7 @@ class KeyPress
 };
 
 extern const KeyPress EscapeKey;
+extern const KeyPress CancelKey;
 extern const KeyPress NumberKey[10];
 
 // Key configuration getter
@@ -65,5 +65,7 @@ KeyPress getKeySetting(const char *settingname);
 // Clear fast lookup cache
 void clearKeyCache();
 
+irr::EKEY_CODE keyname_to_keycode(const char *name);
+
 #endif