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

#include <QApplication>

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();
}