19 lines
281 B
C
Raw Permalink Normal View History

2023-10-08 10:24:48 +08:00
#pragma once
#include "il2cpp-config.h"
struct Il2CppString;
namespace il2cpp
{
namespace utils
{
class LIBIL2CPP_CODEGEN_API Output
{
public:
static void WriteToStdout(const char* message);
static void WriteToStderr(const char* message);
};
}
}