bevy_slinet 0.13.1

A simple networking plugin for bevy.
Documentation
1
2
3
4
5
6
7
//! Implemented protocols are [`tcp`] and [`udp`].

#[cfg(feature = "protocol_tcp")]
pub mod tcp;

#[cfg(feature = "protocol_udp")]
pub mod udp;