mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-13 12:33:20 +02:00
15 lines
247 B
C++
15 lines
247 B
C++
#ifndef BOSS_MSG_BEGIN_HPP
|
|
#define BOSS_MSG_BEGIN_HPP
|
|
|
|
namespace Boss { namespace Msg {
|
|
|
|
/** struct Boss::Msg::Begin
|
|
*
|
|
* @brief message broadcasted at the start of the system.
|
|
*/
|
|
struct Begin {
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* !defined(BOSS_MSG_BEGIN_HPP) */
|