chore: unused types removed

This commit is contained in:
Syntriax 2025-05-28 16:56:07 +03:00
parent da284eda95
commit f20aabcacf
2 changed files with 0 additions and 15 deletions

View File

@ -1,8 +0,0 @@
using Syntriax.Engine.Core;
namespace Syntriax.Engine.Network;
public interface INetworkBehaviour : IBehaviour, INetworkEntity
{
INetworkCommunicator NetworkCommunicator { get; }
}

View File

@ -1,7 +0,0 @@
namespace Syntriax.Engine.Network;
public interface INetworkPacketEntityData<T> : INetworkPacket
{
string Entity { get; }
T Data { get; }
}