7 lines
123 B
C#
7 lines
123 B
C#
namespace Engine.Systems.Network;
|
|
|
|
public interface IEntityNetworkPacket : INetworkPacket
|
|
{
|
|
string EntityId { get; }
|
|
}
|