bevy_quinnet 0.21.0

Bevy plugin for Client/Server multiplayer games using QUIC
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(missing_docs)]

//! A Client/Server game networking plugin using QUIC, for the Bevy game engine.
//! See the repository at <https://github.com/Henauxg/bevy_quinnet>

/// Client features
#[cfg(feature = "client")]
pub mod client;
/// Server features
#[cfg(feature = "server")]
pub mod server;
/// Shared features between client & server
pub mod shared;