recruitmentscene.h 498 B

12345678910111213141516171819202122232425262728293031
  1. #ifndef RECRUITMENTSCENE_H
  2. #define RECRUITMENTSCENE_H
  3. #include <QWidget>
  4. #include <vector>
  5. class UnitIcon;
  6. namespace Ui {
  7. class RecruitmentScene;
  8. }
  9. class RecruitmentScene : public QWidget
  10. {
  11. Q_OBJECT
  12. public:
  13. explicit RecruitmentScene(QWidget *parent = 0);
  14. ~RecruitmentScene();
  15. private slots:
  16. void on_back_button_clicked();
  17. private:
  18. Ui::RecruitmentScene *ui;
  19. UnitIcon* available_units_icons_[5];
  20. UnitIcon* chosen_units_icons_[10];
  21. };
  22. #endif // RECRUITMENTSCENE_H