application scaffolding

This commit is contained in:
2026-04-10 22:12:25 -05:00
parent a7333861b4
commit f8f103e5e9
8 changed files with 102 additions and 1 deletions

26
src/app/App.cpp Normal file
View File

@@ -0,0 +1,26 @@
#include "App.hpp"
#include "utils/utils.hpp"
App::App() {
utils::debugPrint(__FUNCTION__, __LINE__, "App constructor.");
init();
}
void App::init() {
utils::debugPrint(__FUNCTION__, __LINE__, "Init app.");
}
int App::run() {
utils::debugPrint(__FUNCTION__, __LINE__, "Run app.");
return 0;
}