Made a big mess of the codebase

This commit is contained in:
2025-08-28 07:14:13 -05:00
parent 30232d1275
commit af1329710d
44 changed files with 1363 additions and 388 deletions

View File

@@ -10,8 +10,6 @@
#include "time/time.h"
#include "console/console.h"
#include "display/display.h"
#include "ecs/ecssystem.h"
#include "scene/node.h"
#include "asset/asset.h"
#include "scene/test/scenetest.h"
@@ -31,7 +29,6 @@ errorret_t engineInit(void) {
// Init systems. Order is important.
timeInit();
consoleInit();
ecsSystemInit();
errorChain(assetInit());
errorChain(displayInit());
@@ -52,7 +49,6 @@ errorret_t engineUpdate(void) {
}
errorret_t engineDispose(void) {
ecsSystemDispose();
errorChain(displayDispose());
assetDispose();
consoleDispose();