continuity/Server/PacketHandlers/IPacketHandler.cs

6 lines
114 B
C#
Raw Normal View History

2023-08-09 16:23:41 +02:00
namespace Server;
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
}