distributed_physics_test/src/net/mod.rs
Michael Bradley 53fe3333f0
All checks were successful
CI / Formatting (push) Successful in 45s
More complete Peer distribution
Slightly better implementation of peers, still need to create a more generic system for deciding which components to distribute where and then use that for Peers.
2025-10-13 01:06:31 -04:00

17 lines
411 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::distribution_plugin;
pub use super::packet::{InboundPacket, OutboundPacket, Packet};
pub use super::peer::{Peer, PeerID, PeerReceiveTiming, PeerSendTiming, PotentialPeers};
pub use super::plugin::NetIOPlugin;
}