continuity/Server/IPacketHandler.cs

6 lines
111 B
C#
Raw Normal View History

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