aboutsummaryrefslogtreecommitdiff
path: root/src/game/game.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-05-23 19:47:25 +0200
committerHampusM <hampus@hampusmat.com>2022-06-13 17:57:00 +0200
commit6d89d5db5140c04cc94bf4791a32a06a89e95b62 (patch)
treed7ac1cf4f9d65fefedc3adf227f39cf18c9507a0 /src/game/game.hpp
parent4b8db1ab0ae53bd8f6685af2fb55a550c04f8199 (diff)
refactor: improve input handling in game loop
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r--src/game/game.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp
index 75fb165..0ffa1d6 100644
--- a/src/game/game.hpp
+++ b/src/game/game.hpp
@@ -41,4 +41,6 @@ private:
int _gen_update_speed_millis;
void _move_cursor(const Vector2 &direction) noexcept;
+
+ void _insert_cell(const Vector2 &position, char cell) noexcept;
};