12 lines
		
	
	
		
			272 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			272 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
using Engine.Core;
 | 
						|
 | 
						|
namespace Engine.Systems.Network;
 | 
						|
 | 
						|
public interface INetworkManager
 | 
						|
{
 | 
						|
    IReadOnlyDictionary<string, INetworkEntity> NetworkEntities { get; }
 | 
						|
    IBehaviourCollector<INetworkEntity> NetworkEntityCollector { get; }
 | 
						|
}
 |