aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-01-19 15:37:19 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-01-19 15:37:19 -0500
commit2fd212e377f6f087d12892a4327eea74a3fa9bcc (patch)
tree0d75e3d5308f28ccc448a798f95dc3d365aeb2a9 /main.cpp
parent0c61f00d57a4ebe6e3072dd220091f31db2838c0 (diff)
downloaderable-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.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index 784d95d..7968eff 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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();
}