continuity/Server/IPacketHandler.cs

6 lines
97 B
C#
Raw Normal View History

2023-08-09 14:23:41 +00:00
namespace Server;
public interface IPacketHandler
{
public void Process(Packet packet);
}