AlpacaLibrary/Include/Core/Debug.hpp

22 lines
427 B
C++

#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;
static void ShowConsole();
static void HideConsole();
static void SetVerbose(bool Toggle);
};
#endif // DEBUG_HPP_INCLUDED