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
use Component;
/// A marker [`Component`]. Required to mark entities with network state.
///
/// Registered network components will only be saved or loaded with this
/// marker component present.
u32);
/// A provider resource of new, globally unique [`NetworkId`] components.
///
/// This resource itself is registered as a saveable resource and is guarenteed
/// to deterministically produce IDs across rollbacks.
///
/// This resource is reset upon starting a new session via
/// [`BackrollCommands::start_backroll_session`][start_backroll_session].
///
/// [start_backroll_session]: crate::BackrollCommands::start_backroll_session
;