aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: 85f57aa8901d7a2d2ac392d3bb2ed5807919adc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "player.h"
#include <QMessageBox>
#include <QDebug>

#include <QApplication>

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