forgot to instanciate module

This commit is contained in:
Anselme 2017-09-25 18:20:28 +02:00
parent 68d26f149c
commit 42e5d24231

View File

@ -12,6 +12,7 @@
#include "jankenmodule.h"
#include "rpgmodule.h"
#include "punishermodule.h"
#include "mmokobanmodule.h"
//
#include "janken.h"
@ -47,6 +48,7 @@ int main(int argc, char *argv[])
app.addModule(new JankenModule());
app.addModule(new RPGModule());
app.addModule(new PunisherModule());
app.addModule(new MMOkobanModule());
//app.addModule(new TodoModule());
return app.exec();