back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/gameplay.hpp
blob: 00697727f88b998a9a428d593131deddce304063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef GAMEPLAY_HPP_SENTRY
#define GAMEPLAY_HPP_SENTRY

#include "puzzle.hpp"

void press_button_callback(Fl_Widget *w, void *params);

class PuzzleGame {
public:
    static bool IsFinalPlacement(GameParams *gp);
    static void StartGame(GameParams *gp);
};

#endif