Skip to content

Instantly share code, notes, and snippets.

@KT-Yeh
Created June 13, 2014 13:35
Show Gist options
  • Save KT-Yeh/b627ef878aa7bdc2edd2 to your computer and use it in GitHub Desktop.
Save KT-Yeh/b627ef878aa7bdc2edd2 to your computer and use it in GitHub Desktop.
#include "mainwindow.h"
#include <QApplication>
#include "Game.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow *w = new MainWindow;
Game *g = new Game(w);
g->setFocus();
w->show();
return a.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment