hotseatgame.h 500 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef HOTSEATGAME_H
  2. #define HOTSEATGAME_H
  3. #include <QWidget>
  4. #include "gui/scene.h"
  5. #include "hotseatgame/gamemanager.h"
  6. #include "hotseatgame/gameproperties.h"
  7. namespace Ui {
  8. class HotSeatGame;
  9. }
  10. class HotSeatGame : public Scene
  11. {
  12. Q_OBJECT
  13. public:
  14. explicit HotSeatGame(QWidget *parent = 0);
  15. ~HotSeatGame();
  16. void init() override;
  17. private slots:
  18. void on_surrender_button__clicked();
  19. private:
  20. void paintField();
  21. Ui::HotSeatGame *ui;
  22. };
  23. #endif // HOTSEATGAME_H