aboutsummaryrefslogtreecommitdiff
path: root/about.cpp
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-01-19 23:30:36 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-01-19 23:30:36 -0500
commit261dc10a82fadee5df1942340eaa7b101ff9323d (patch)
treed42bf7558efaeca485f99a8ed145515f883ac40a /about.cpp
parent7e166acd060dfefb3ffd74e7fb1eea18a57afe4c (diff)
downloaderable-godot-261dc10a82fadee5df1942340eaa7b101ff9323d.tar.gz
erable-godot-261dc10a82fadee5df1942340eaa7b101ff9323d.tar.bz2
erable-godot-261dc10a82fadee5df1942340eaa7b101ff9323d.zip
Added about page and finally music is playing :D
Diffstat (limited to 'about.cpp')
-rw-r--r--about.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/about.cpp b/about.cpp
new file mode 100644
index 0000000..5bea58a
--- /dev/null
+++ b/about.cpp
@@ -0,0 +1,14 @@
+#include "about.h"
+#include "ui_about.h"
+
+About::About(QWidget *parent) :
+ QDialog(parent),
+ ui(new Ui::About)
+{
+ ui->setupUi(this);
+}
+
+About::~About()
+{
+ delete ui;
+}