bevy_slinet 0.1.0

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

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

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