Advertisement
Combreal

main.cpp

Mar 29th, 2014
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include "gameselector.h"
  2. #include <QApplication>
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6.     QApplication a(argc, argv);
  7.     srand(time(0));
  8.     gameselector w;
  9.     w.show();
  10.  
  11.     return a.exec();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement