mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-17 13:07:24 +02:00
16 lines
324 B
C++
16 lines
324 B
C++
|
|
#ifndef BOSS_MSG_TIMERRANDOMHOURLY_HPP
|
||
|
|
#define BOSS_MSG_TIMERRANDOMHOURLY_HPP
|
||
|
|
|
||
|
|
namespace Boss { namespace Msg {
|
||
|
|
|
||
|
|
/** struct Boss::Msg::TimerRandomHourly
|
||
|
|
*
|
||
|
|
* @brief emitted approximately once an
|
||
|
|
* hour, but with some randomness.
|
||
|
|
*/
|
||
|
|
struct TimerRandomHourly { };
|
||
|
|
|
||
|
|
}}
|
||
|
|
|
||
|
|
#endif /* !defined(BOSS_MSG_TIMERRANDOMHOURLY_HPP) */
|