recruitmentscene.h 447 B

12345678910111213141516171819202122232425262728
  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:
  16. Ui::RecruitmentScene *ui;
  17. UnitIcon* available_units_icons_[5];
  18. UnitIcon* chosen_units_icons_[10];
  19. };
  20. #endif // RECRUITMENTSCENE_H