First commit of brand new rewrite

This commit is contained in:
itsmattkc
2018-05-30 03:24:12 +10:00
commit 244c092591
86 changed files with 8016 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "playbutton.h"
PlayButton::PlayButton(QWidget* parent) : QPushButton(parent)
{
play_text = ">";
pause_text = "||";
setText(play_text);
}