minor refactor

This commit is contained in:
MihailRis
2024-05-05 20:08:25 +03:00
parent 75e56ebd83
commit 7f8a86b740
35 changed files with 76 additions and 83 deletions
+4 -4
View File
@@ -2,9 +2,9 @@
#include "items/ItemDef.h"
#include "content/Content.h"
#include "window/Window.h"
#include "window/Events.h"
#include "window/input.h"
#include "window/Window.hpp"
#include "window/Events.hpp"
#include "window/input.hpp"
#include "voxels/Block.h"
// All in-game definitions (blocks, items, etc..)
@@ -40,4 +40,4 @@ void corecontent::setup_bindings() {
Events::bind(BIND_PLAYER_BUILD, inputtype::mouse, mousecode::BUTTON_2);
Events::bind(BIND_PLAYER_PICK, inputtype::mouse, mousecode::BUTTON_3);
Events::bind(BIND_HUD_INVENTORY, inputtype::keyboard, keycode::TAB);
}
}