using System.Collections.Generic; using Engine.Core; namespace Engine.Systems.Network; public interface INetworkManager { IReadOnlyDictionary NetworkEntities { get; } IBehaviourCollector NetworkEntityCollector { get; } }