distributed_physics_test/src/net/mod.rs
Michael Bradley 3921537360
All checks were successful
CI / Formatting (push) Successful in 39s
Add trait wrapping the distribution query filters
2025-10-26 18:34:13 -04:00

20 lines
551 B
Rust

mod distribution;
mod heartbeat;
mod io;
mod packet;
mod peer;
mod plugin;
mod queues;
mod socket;
mod thread;
#[allow(unused_imports)]
pub mod prelude {
pub use super::distribution::{
DefaultNetworkSettings, DistributionPlugin, EntityNetworkID, NetworkDecodable,
NetworkEncodable, NetworkSettings, Networked, PeerOwned,
};
pub use super::packet::{InboundPacket, OutboundPacket, Packet};
pub use super::peer::{Peer, PeerID, PeerReceiveTiming, PeerSendTiming, PotentialPeers};
pub use super::plugin::NetIOPlugin;
}