AlpacaLibrary/Include/Core/Debug.hpp

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