15 lines
226 B
C++
15 lines
226 B
C++
#include <QApplication>
|
|
#include "player_gui.h"
|
|
|
|
// """ Version 0.11 """
|
|
|
|
//using namespace std;
|
|
|
|
int main(int argc, char* argv[]) {
|
|
QApplication app(argc, argv);
|
|
|
|
player_gui w;
|
|
w.show();
|
|
|
|
return app.exec();
|
|
}
|