Initial commit
[vexed] / howtoplay.cpp
diff --git a/howtoplay.cpp b/howtoplay.cpp
new file mode 100644 (file)
index 0000000..fad22f0
--- /dev/null
@@ -0,0 +1,14 @@
+#include "howtoplay.h"
+#include "ui_howtoplay.h"
+
+HowToPlay::HowToPlay(QWidget *parent) :
+    QDialog(parent),
+    ui(new Ui::HowToPlay)
+{
+    ui->setupUi(this);
+}
+
+HowToPlay::~HowToPlay()
+{
+    delete ui;
+}