overhaul directory structure

This commit is contained in:
Justin Scofield
2022-06-15 20:56:15 -04:00
parent 70c59d0e96
commit efcaad0f53
62 changed files with 6948 additions and 85 deletions

View File

@@ -0,0 +1,18 @@
#ifndef YAZE_APPLICATION_CONTROLLER_ENTRYPOINT_H
#define YAZE_APPLICATION_CONTROLLER_ENTRYPOINT_H
#include "controller.h"
int main(int argc, char** argv) {
yaze::application::Core::Controller controller;
controller.onEntry();
while (controller.isActive()) {
controller.onInput();
controller.onLoad();
controller.doRender();
}
controller.onExit();
return EXIT_SUCCESS;
}
#endif // YAZE_APPLICATION_CONTROLLER_ENTRYPOINT_H