- 授权协议: 未知
- 开发语言: C/C++
- 操作系统: 跨平台
- 软件首页: https://github.com/danquist/EventBus
- 软件文档: https://github.com/danquist/EventBus
软件介绍
EventBus 是一个为 C++11 编写的轻量级同步事件框架。
示例代码:
Player player1("Player 1", 0, 0, 0); // Player instance with a name and default position PlayerChatEvent e(this, &player1, "This is a chat message"); // Create the event object EventBus::FireEvent(e); // Fire the event