diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-01-19 15:37:19 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-01-19 15:37:19 -0500 |
| commit | 2fd212e377f6f087d12892a4327eea74a3fa9bcc (patch) | |
| tree | 0d75e3d5308f28ccc448a798f95dc3d365aeb2a9 /main.cpp | |
| parent | 0c61f00d57a4ebe6e3072dd220091f31db2838c0 (diff) | |
| download | erable-godot-2fd212e377f6f087d12892a4327eea74a3fa9bcc.tar.gz erable-godot-2fd212e377f6f087d12892a4327eea74a3fa9bcc.tar.bz2 erable-godot-2fd212e377f6f087d12892a4327eea74a3fa9bcc.zip | |
Added some stuff
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,11 +1,13 @@ +#include <iostream> #include "player.h" #include <QApplication> int main(int argc, char *argv[]) { + std::cout << "Starting AleePlayer...\n"; QApplication a(argc, argv); - Player w; - w.show(); + Player musicPlayer; + musicPlayer.show(); return a.exec(); } |
