mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-05-28 06:24:34 +00:00
14 lines
316 B
C++
14 lines
316 B
C++
#pragma once
|
|
#include <cstdio>
|
|
|
|
class Logger {
|
|
public:
|
|
static void Info(const char* message);
|
|
static void Warning(const char* message);
|
|
static void Error(const char* message);
|
|
|
|
static void Info(const wchar_t* message);
|
|
static void Warning(const wchar_t* message);
|
|
|
|
static void Error(const wchar_t* message);
|
|
}; |