summaryrefslogtreecommitdiff
path: root/src/mainwindow.cc
blob: 60d2dcfbbd9e5f2fec296400a5289d4fcdf65fe3 (plain)
1
2
3
4
5
6
7
8
9
10

#include "mainwindow.h"
#include "sudoku.h"

MainWindow::MainWindow()
{
	mainwindow_sudoku = new Sudoku();
	
	setCentralWidget(mainwindow_sudoku);
}