Curated NotifyLogin data, cleaned up handlers and rearranged code

This commit is contained in:
Kyle Belanger
2023-10-14 11:05:58 -04:00
parent fbf0a6d3ba
commit fb5d11055e
10 changed files with 4478 additions and 150 deletions

View File

@@ -0,0 +1,14 @@
using AscNet.Common.MsgPack;
namespace AscNet.GameServer.Handlers
{
internal class PayModule
{
[RequestPacketHandler("GetPurchaseListRequest")]
public static void GetPurchaseListRequestHandler(Session session, Packet.Request packet)
{
GetPurchaseListResponse getPurchaseListResponse = new();
session.SendResponse(getPurchaseListResponse, packet.Id);
}
}
}