AlpacaLibrary/Include/Core/Debug.hpp

24 lines
488 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef DEBUG_HPP_INCLUDED
#define DEBUG_HPP_INCLUDED
#include "../../Include/Core/Types/Logger.hpp"
class Debug
{
public:
static Logger Info;
static Logger Verbose;
static Logger Warning;
static Logger Error;
static Logger Fatal;
2018-04-18 05:50:40 +00:00
static Logger Internal;
2018-08-23 05:52:48 +00:00
static Logger Paint;
2017-12-25 23:49:48 +00:00
static void ShowConsole();
static void HideConsole();
static void SetVerbose(bool Toggle);
};
#endif // DEBUG_HPP_INCLUDED