OpenLoco/src/openloco/Console.h

12 lines
235 B
C
Raw Normal View History

2018-01-21 00:46:01 +01:00
#pragma once
namespace openloco::console
{
void log(const char* format, ...);
void logVerbose(const char* format, ...);
2018-01-21 14:12:39 +01:00
void error(const char* format, ...);
2018-01-21 00:46:01 +01:00
void group(const char* format, ...);
void groupEnd();
2018-01-21 00:46:01 +01:00
}