All checks were successful
CI / Formatting (push) Successful in 1m6s
Add Bevy event queues for inbound and outbound packets, and use Bevy change detection for consumer new Peer handling.
13 lines
263 B
Rust
13 lines
263 B
Rust
mod io;
|
|
mod peer;
|
|
mod plugin;
|
|
mod queues;
|
|
mod socket;
|
|
mod thread;
|
|
|
|
#[allow(unused_imports)]
|
|
pub mod prelude {
|
|
pub use super::io::{InboundPacket, OutboundPacket, Packet};
|
|
pub use super::peer::Peer;
|
|
pub use super::plugin::{NetIOPlugin, NetworkState};
|
|
}
|