Add sudoku Game

This commit is contained in:
jb
2009-03-16 22:39:40 +00:00
commit 2e68340b3a
21 changed files with 335 additions and 0 deletions

20
src/main.cpp Normal file
View File

@@ -0,0 +1,20 @@
/******************************************
*
* Main function of the sudoku program.
*
******************************************/
#include <qapplication.h>
#include "sudoku.h"
int main (int argc, char **argv)
{
Q_INIT_RESOURCE (sudoku);
QApplication a (argc, argv);
/* Create a new Sudoku object. */
Sudoku * mw = new Sudoku ();
mw->resize (300,300);
mw->show();
return a.exec();
}