14 lines
No EOL
276 B
C#
14 lines
No EOL
276 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using System.Threading.Tasks;
|
|
using WingsEmu.Game.Networking;
|
|
using WingsEmu.Packets;
|
|
|
|
namespace WingsEmu.Game._packetHandling;
|
|
|
|
public interface IPacketHandler
|
|
{
|
|
Task HandleAsync(IClientSession session, IPacket packet);
|
|
} |