1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// SPDX-License-Identifier: MIT
//! Library entry point for `bevy-networker-multiplayer`.
//!
//! This crate keeps the public API intentionally small:
//! - `NetResource` gives access to the underlying socket layer.
//! - `Replicated` marks entities that should exist on every peer.
//! - `#[sync]` marks components and resources that should replicate.
//! - `#[netmsg]` marks typed messages for request/response style traffic.
//! - Optional prediction helpers live behind the `prediction` feature.
pub use bincode;
pub use bevy;
pub use inventory;
pub extern crate networker_rs;
pub use serde;
/// Re-export the proc-macros that power sync and messages.
pub use ;
/// Network transport and connection management.
/// Typed message support and hashing helpers.
/// Replicated entity marker and plugin wiring.
/// Optional client-side prediction support.
/// Sync registration, snapshotting, and packet application.
/// Resource handle for the networking layer.
pub use NetResource;
/// Trait implemented by messages created with `#[netmsg]`.
pub use NetMessage;
/// Marker component and plugin for replicated entities.
pub use ;
/// Prediction plugin and traits, only available with the feature enabled.
pub use ;
/// Returns the published crate name.
/// Basic sanity test for the crate identity helper.