2025-02-15 07:30:59 +01:00
|
|
|
#include <QApplication>
|
2025-02-15 07:42:24 +01:00
|
|
|
#include "player_gui.h"
|
2025-02-15 07:31:32 +01:00
|
|
|
|
2025-02-15 07:42:24 +01:00
|
|
|
// """ Version 0.11 """
|
2025-02-15 07:38:45 +01:00
|
|
|
|
2025-02-15 07:32:07 +01:00
|
|
|
//using namespace std;
|
2025-02-15 07:30:59 +01:00
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
QApplication app(argc, argv);
|
2025-02-15 07:33:46 +01:00
|
|
|
|
2025-02-15 07:42:24 +01:00
|
|
|
player_gui w;
|
|
|
|
w.show();
|
2025-02-15 07:33:46 +01:00
|
|
|
|
2025-02-15 07:30:59 +01:00
|
|
|
return app.exec();
|
|
|
|
}
|