Advertisement
Combreal

gameselector.h

Mar 29th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. #ifndef GAMESELECTOR_H
  2. #define GAMESELECTOR_H
  3.  
  4. #include <QDialog>
  5. #include <QTextStream>
  6. #include <ctime>
  7. #include <cstdlib>
  8. #include <stdlib.h>
  9.  
  10. namespace Ui {
  11. class gameselector;
  12. }
  13.  
  14. class gameselector : public QDialog
  15. {
  16.     Q_OBJECT
  17.  
  18. public:
  19.     explicit gameselector(QWidget *parent = 0);
  20.     ~gameselector();
  21. public slots:
  22.     void f_proposer();
  23. private:
  24.     Ui::gameselector *ui;
  25.     QString smap[11];
  26.     QString sgt[3];
  27.     int tabgt[11];
  28. };
  29.  
  30. #endif // GAMESELECTOR_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement