distributed_physics_test/src/net/mod.rs
Michael Bradley c10f6cfb82
All checks were successful
CI / Formatting (push) Successful in 1m6s
Rework networking interface
Add Bevy event queues for inbound and outbound packets, and use Bevy change detection for consumer new Peer handling.
2025-07-05 15:01:33 -04:00

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};
}