This commit is contained in:
Asuro
2025-02-07 00:32:38 +01:00
parent 445844bb6d
commit 3be734ae2f
16 changed files with 193 additions and 32 deletions

10
src/game/Log.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "Log.h"
#include <cstdio>
namespace Game
{
void Log(const char* text)
{
printf("%s\n", text);
}
}