OpenLoco/src/openloco/Console.h

12 lines
235 B
C++

#pragma once
namespace openloco::console
{
void log(const char* format, ...);
void logVerbose(const char* format, ...);
void error(const char* format, ...);
void group(const char* format, ...);
void groupEnd();
}