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,9 @@
namespace Syntriax.Engine.Systems.Network;
public enum PacketDelivery
{
ReliableInOrder,
ReliableOutOfOrder,
UnreliableInOrder,
UnreliableOutOfOrder,
};