-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
19 lines (16 loc) · 730 Bytes
/
Copy pathmain.cpp
File metadata and controls
19 lines (16 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "titlescreen.h"
#include <QApplication>
/* ________ ________________________ __________ __________ _____ _________
* / _____/ / _ \__ ___/\_____ \\______ \ \______ \/ _ \ \_ ___ \
* / \ ___ / /_\ \| | / _ \| _/ | ___/ /_\ \/ \ \/
* \ \_\ \/ | \ | / /_\ \ | \ | | / | \ \____
* \______ /\____|__ /____| \_______ /____|_ / |____| \____|__ /\______ /
* \/ \/ \/ \/ \/ \/
*/
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
TitleScreen window;
window.show();
return a.exec();
}