hotseatgame.h 398 B

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