Here comes he RunT!

This commit is contained in:
2026-02-20 23:40:15 -08:00
parent 88d989f9cd
commit aaf4596217
36 changed files with 11508 additions and 416 deletions

9
Sources/async_engine.cpp Normal file
View File

@ -0,0 +1,9 @@
#include "async_engine.h"
#include <kinc/log.h>
namespace EngineManager {
std::unique_ptr<AsyncEngine> AsyncEngine::instance_;
std::once_flag AsyncEngine::initialized_;
}