back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/gameplay.hpp
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-11-10 15:16:31 +0300
committerscratko <m@scratko.xyz>2024-11-11 22:04:21 +0300
commit9023f43291b894f7670df2ffe513808ef6360954 (patch)
treee7b4c4d3689bcda7f4bfc949bc3f2ac1d580fc07 /gameplay.hpp
parent0ddc597a0f2eeb0dc49f8a6ab4a8af0d615b6ece (diff)
downloadpicture-puzzle-9023f43291b894f7670df2ffe513808ef6360954.tar.gz
picture-puzzle-9023f43291b894f7670df2ffe513808ef6360954.tar.bz2
picture-puzzle-9023f43291b894f7670df2ffe513808ef6360954.zip
Added end game check
Diffstat (limited to 'gameplay.hpp')
-rw-r--r--gameplay.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/gameplay.hpp b/gameplay.hpp
index 22e0ab7..0069772 100644
--- a/gameplay.hpp
+++ b/gameplay.hpp
@@ -5,4 +5,10 @@
void press_button_callback(Fl_Widget *w, void *params);
+class PuzzleGame {
+public:
+ static bool IsFinalPlacement(GameParams *gp);
+ static void StartGame(GameParams *gp);
+};
+
#endif