continuity/Server/PacketHandlers/IPacketHandler.cs

6 lines
114 B
C#
Raw Normal View History

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