remove entry_point header
This commit is contained in:
@@ -1,18 +0,0 @@
|
|||||||
#ifndef YAZE_APP_CONTROLLER_ENTRYPOINT_H
|
|
||||||
#define YAZE_APP_CONTROLLER_ENTRYPOINT_H
|
|
||||||
|
|
||||||
#include "controller.h"
|
|
||||||
|
|
||||||
int main(int argc, char** argv) {
|
|
||||||
yaze::app::core::Controller controller;
|
|
||||||
controller.onEntry();
|
|
||||||
while (controller.isActive()) {
|
|
||||||
controller.onInput();
|
|
||||||
controller.onLoad();
|
|
||||||
controller.doRender();
|
|
||||||
}
|
|
||||||
controller.onExit();
|
|
||||||
return EXIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // YAZE_APP_CONTROLLER_ENTRYPOINT_H
|
|
||||||
14
src/yaze.cc
14
src/yaze.cc
@@ -1 +1,13 @@
|
|||||||
#include "yaze.h"
|
#include "yaze.h"
|
||||||
|
|
||||||
|
int main(int argc, char** argv) {
|
||||||
|
yaze::app::core::Controller controller;
|
||||||
|
controller.onEntry();
|
||||||
|
while (controller.isActive()) {
|
||||||
|
controller.onInput();
|
||||||
|
controller.onLoad();
|
||||||
|
controller.doRender();
|
||||||
|
}
|
||||||
|
controller.onExit();
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
@@ -2,6 +2,5 @@
|
|||||||
#define YAZE_YAZE_H
|
#define YAZE_YAZE_H
|
||||||
|
|
||||||
#include "app/core/controller.h"
|
#include "app/core/controller.h"
|
||||||
#include "app/core/entry_point.h"
|
|
||||||
|
|
||||||
#endif // YAZE_YAZE_H
|
#endif // YAZE_YAZE_H
|
||||||
Reference in New Issue
Block a user