issun 0.10.0

A mini game engine for logic-focused games - Build games in ISSUN (一寸) of time
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Network-transparent EventBus for multiplayer games
//!
//! This module provides network support for the EventBus, allowing events to be
//! seamlessly transmitted across network nodes using the same API as local events.

#[cfg(feature = "network")]
pub mod types;

#[cfg(feature = "network")]
pub mod backend;

#[cfg(feature = "network")]
pub use types::{NetworkMetadata, NetworkScope, NetworkedEvent, NodeId};

#[cfg(feature = "network")]
pub use backend::{NetworkBackend, QuicClientBackend};