feat: add logging system, orchestrator, and documentation

This commit is contained in:
Loic Coenen
2026-05-19 08:26:36 +00:00
parent f776b8a361
commit e79c2ac116
27 changed files with 612 additions and 13 deletions

8
engine/src/log.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef LOG_H
#define LOG_H
void log_init(void);
void log_msg(const char *fmt, ...);
void log_close(void);
#endif