You've already forked assetnamehasher
mirror of
https://github.com/AxioDL/assetnamehasher.git
synced 2026-03-30 11:49:53 -07:00
11 lines
189 B
C++
11 lines
189 B
C++
#include <QApplication>
|
|
#include "MainWindow.hpp"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
MainWindow mw;
|
|
mw.show();
|
|
return app.exec();
|
|
}
|