Create generic distribution system
Still incredibly basic and only handles initial distribution and spawning with no relationships or anything.
This commit is contained in:
parent
d76afe92f0
commit
4db82f328b
5 changed files with 66 additions and 8 deletions
|
@ -1,14 +1,18 @@
|
|||
mod distribution;
|
||||
mod io;
|
||||
mod packet;
|
||||
mod peer;
|
||||
mod plugin;
|
||||
mod queues;
|
||||
mod socket;
|
||||
mod state;
|
||||
mod thread;
|
||||
|
||||
#[allow(unused_imports)]
|
||||
pub mod prelude {
|
||||
pub use super::distribution::Networked;
|
||||
pub use super::packet::{InboundPacket, OutboundPacket, Packet};
|
||||
pub use super::peer::{Peer, PeerReceiveTiming, PeerSendTiming};
|
||||
pub use super::plugin::{NetIOPlugin, NetworkState};
|
||||
pub use super::plugin::NetIOPlugin;
|
||||
pub use super::state::NetworkState;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue