Updated project structure

This commit is contained in:
2019-01-10 04:29:58 +01:00
parent bdfbe8ba48
commit 4da286c23e
87 changed files with 96 additions and 73 deletions

16
src/main.cpp Normal file
View File

@@ -0,0 +1,16 @@
/**
* @author Pierre HUBERT
*/
#include <QApplication>
#include "controllers/initcontroller.h"
int main(int argc, char** argv){
QApplication app(argc, argv);
//Initialize app
(new InitController())->init();
return app.exec();
}