Expand description
Protocol-level primitive types.
Structs§
- Client
Id - A unique identifier for a connected client session. Assigned by the transport layer on connection, released on disconnect.
- Component
Kind - A component type identifier. Used by the Encoder to determine how to serialize/deserialize a specific component’s fields.
- LocalId
- The ECS’s internal entity handle. Opaque to the network layer.
In Phase 1 (Bevy), this wraps
bevy_ecs::entity::Entity. - Network
Id - A globally unique entity identifier used in all network communication. Assigned by the server. Immutable for the lifetime of the entity.
- Network
IdAllocator - Authoritative allocator for
NetworkIds. - Transform
- Standard transform component used for replication (
ComponentKind1).