continuity/Server/PacketHandlers/IPacketHandler.cs

8 lines
152 B
C#
Raw Normal View History

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