continuity/Server/PacketHandlers/IPacketHandler.cs

8 lines
152 B
C#
Raw Normal View History

2023-08-10 10:47:35 +02:00
using Server.Packets;
namespace Server.PacketHandlers;
2023-08-09 16:23:41 +02:00
public interface IPacketHandler<in T> where T: IPacket
2023-08-09 16:23:41 +02:00
{
2023-08-09 20:14:14 +02:00
public void Handle(T packet);
2023-08-09 16:23:41 +02:00
}