feat: began working on cleaning up explorative main file

This commit is contained in:
Leonetienne
2025-12-13 20:50:31 +01:00
commit 181139aae5
11 changed files with 583 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include "MainLoop.hpp"
MainLoop* mainloop = nullptr;
void setup() {
mainloop = &MainLoop::getInstance();
mainloop->setup();
}
void loop() {
mainloop->update();
}