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

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