feat: added networking system

This commit is contained in:
2025-08-05 19:27:27 +03:00
parent 3452194941
commit 6631cae7b0
10 changed files with 427 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System.Collections.Generic;
using Syntriax.Engine.Core;
namespace Syntriax.Engine.Systems.Network;
public interface INetworkManager
{
IReadOnlyDictionary<string, INetworkEntity> NetworkEntities { get; }
IBehaviourCollector<INetworkEntity> NetworkEntityCollector { get; }
}