8 lines
No EOL
152 B
C#
8 lines
No EOL
152 B
C#
using Server.Packets;
|
|
|
|
namespace Server.PacketHandlers;
|
|
|
|
public interface IPacketHandler<in T> where T: IPacket
|
|
{
|
|
public void Handle(T packet);
|
|
} |