mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
15 lines
431 B
Rust
15 lines
431 B
Rust
// 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, handle_res_update, CompPacket, EntityPackage,
|
|
ResPacket, ResSyncPackage, StatePackage, SyncPackage,
|
|
};
|
|
pub use sync_ext::WorldSyncExt;
|
|
pub use track::{Tracker, UpdateTracker};
|
|
pub use uid::{Uid, UidAllocator};
|