dungeon/src/Main.cpp
Adrian Hedqvist ec131d8bda Too much stuff
* Implemented lua using kaguya, only for config files for now
* Moved color struct to its own header
* statically link glew instead of including the source in the project
* Other stuff that I don't remember
2017-10-18 12:25:25 +02:00

11 lines
154 B
C++

#include "App.h"
int main(int argc, char* argv[]) {
App app{};
int err = 1;
if (app.init()) {
err = app.start();
}
return err;
}