using Friflo.Engine.ECS;
namespace MrGameEng.Net;
///
/// Marks an entity as replicated and identifies it across the network. The server assigns
/// values (see ); the client creates a local
/// entity with the same when the first snapshot arrives.
///
public struct NetId : IComponent
{
/// Network-wide entity id, unique per server world.
public int Value;
}