iw4x-client/iw4/Components/Logger.hpp
2015-12-23 22:21:03 +01:00

15 lines
310 B
C++

namespace Components
{
class Logger : public Component
{
public:
Logger();
const char* GetName() { return "Logger"; };
static void Print(const char* message, ...);
static void Error(const char* message, ...);
static void SoftError(const char* message, ...);
static bool IsConsoleReady();
};
}