first commit
[blok] / mainwindow.cpp
diff --git a/mainwindow.cpp b/mainwindow.cpp
new file mode 100644 (file)
index 0000000..349a798
--- /dev/null
@@ -0,0 +1,14 @@
+#include "mainwindow.h"
+#include <QPixmap>
+MainWindow::MainWindow(QWidget *parent) :
+        QMainWindow(parent)
+{
+    mView = new BlokGameView;
+
+    setCentralWidget(mView);
+
+    setFixedSize(800,480);
+
+    showFullScreen();
+}
+