Initial commit

This commit is contained in:
Anton Kamalov
2025-12-06 16:01:44 +03:00
parent 5d3506215c
commit e613b4f004
23 changed files with 14518 additions and 1 deletions

24
GCS/headers/Console.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef BASE_H
#define BASE_H
#include <stdio.h>
#include <stdarg.h>
//#include <emscripten.h>
//
//EM_JS(void, log_string, (const char* str), {
// console.log(UTF8ToString(str));
//} );
//class Console {
//public:
// static void Log(const char* format, ...) {
// va_list args;
// va_start(args, format);
// char buffer[512];
// vsprintf(buffer, format, args);
// va_end(args);
// log_string(buffer);
// }
//};
#endif // BASE_H