AlpacaLibrary/Include/Game/Tools/RandomHandler.hpp

17 lines
368 B
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef RANDOMHANDLER_HPP_INCLUDED
#define RANDOMHANDLER_HPP_INCLUDED
#include "../../Core/Types/Counter.hpp"
#include "../../Core/Types/Countdown.hpp"
#include <cstdint>
2018-12-27 18:17:09 +00:00
namespace RandomHandler
2017-12-25 23:49:48 +00:00
{
2018-12-27 18:17:09 +00:00
void SetCheckDelay(std::int64_t Time);
Countdown GetCheckCountdown();
Counter GetRandomsCounter();
bool Check();
2018-12-31 21:52:58 +00:00
}
2017-12-25 23:49:48 +00:00
#endif // RANDOMHANDLER_HPP_INCLUDED