#include #include "player.h" #include int main(int argc, char *argv[]) { std::cout << "AleePlayer: A music player by Alee Productions. Licensed with GPL-3.0\n"; QApplication a(argc, argv); Player musicPlayer; musicPlayer.show(); return a.exec(); }