1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 00:04:43 +01:00
Files
OpenRCT2/src/openrct2/core/Console.hpp
2018-07-23 16:00:03 +02:00

35 lines
1.0 KiB
C++

/*****************************************************************************
* Copyright (c) 2014-2018 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#pragma once
#include "../common.h"
#include <cstdarg>
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* format, ...);
namespace Error
{
void Write(char c);
void Write(const utf8* str);
void WriteFormat(const utf8* format, ...);
void WriteLine();
void WriteLine(const utf8* format, ...);
void WriteLine_VA(const utf8* format, va_list args);
} // namespace Error
} // namespace Console