diff options
Diffstat (limited to 'src/GameState.hpp')
-rw-r--r-- | src/GameState.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/GameState.hpp b/src/GameState.hpp index 7145df5..0bc8cfd 100644 --- a/src/GameState.hpp +++ b/src/GameState.hpp @@ -27,6 +27,8 @@ public: enum Direction { FORWARD, BACKWARD, LEFT, RIGHT, JUMP }; + void StartDigging(); + void StopDigging(); void HandleMovement(GameState::Direction direction, float deltaTime); void HandleRotation(double yaw, double pitch); glm::mat4 GetViewMatrix(); @@ -58,4 +60,6 @@ public: Window playerInventory; std::vector<Window> openedWindows; + + Vector selectedBlock; }; |