AlpacaLibrary/Include/Game/Tools/BreakHandler.hpp

19 lines
452 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef BREAKHANDLER_HPP_INCLUDED
#define BREAKHANDLER_HPP_INCLUDED
#include "../../Core/Types/Timer.hpp"
#include "../../Core/Types/Counter.hpp"
class BreakHandler
{
public:
static Counter GetBreakCounter();
static Timer GetBreakTimer();
static bool ShortBreak(bool Logout = true);
static bool LongBreak(bool Logout = true);
static bool Break(bool Logout = true);
};
#endif // BREAKHANDLER_HPP_INCLUDED