1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 19:43:06 +01:00
Files
OpenRCT2/src/core/Console.hpp
2016-01-12 23:10:17 +00:00

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);
}
}