Add sudoku Game
This commit is contained in:
20
src/main.cpp
Normal file
20
src/main.cpp
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user