mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 19:43:06 +01:00
26 lines
499 B
C++
26 lines
499 B
C++
#pragma once
|
|
|
|
extern "C"
|
|
{
|
|
#include "../common.h"
|
|
}
|
|
|
|
namespace Console
|
|
{
|
|
void Write(char c);
|
|
void Write(const utf8 * str);
|
|
void WriteSpace(size_t count);
|
|
void WriteFormat(const utf8 * format, ...);
|
|
void WriteLine();
|
|
void WriteLine(const utf8 * str);
|
|
|
|
namespace Error
|
|
{
|
|
void Write(char c);
|
|
void Write(const utf8 * str);
|
|
void WriteFormat(const utf8 * format, ...);
|
|
void WriteLine();
|
|
void WriteLine(const utf8 * str);
|
|
}
|
|
}
|