This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
DRAwer_2_0/GCS/headers/Console.h
Anton Kamalov e613b4f004 Initial commit
2025-12-06 16:01:44 +03:00

24 lines
481 B
C

#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