Initial commit

This commit is contained in:
CJ Satnarine
2025-02-15 00:07:28 -05:00
committed by GitHub
commit 30879d8ef8
25 changed files with 16500 additions and 0 deletions

6
src/classes/debug.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
void LogInfo(const char *msg)
{
std::cout<< msg << std::endl;
}