feat: add block placement and destruction

This commit is contained in:
2026-03-14 14:37:27 +08:00
parent ec2d3c3c0c
commit 8b1579b5fd
11 changed files with 329 additions and 198 deletions

9
src/input.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <Cubed/input.hpp>
static InputState input_state;
namespace Input {
InputState& get_input_state() {
return input_state;
}
}