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