veloren/common/src/sync/mod.rs

15 lines
374 B
Rust
Raw Normal View History

2019-11-24 20:12:03 +00:00
// Note: Currently only one-way sync is supported until a usecase for two-way sync arises
mod packet;
mod sync_ext;
mod track;
mod uid;
// Reexports
pub use packet::{
handle_insert, handle_modify, handle_remove, CompPacket, EntityPackage, StatePackage,
SyncPackage,
2019-11-24 20:12:03 +00:00
};
pub use sync_ext::WorldSyncExt;
pub use track::UpdateTracker;
2019-11-24 20:12:03 +00:00
pub use uid::{Uid, UidAllocator};