mirror of
https://git.lewd.wtf/PGR/ascnet
synced 2025-12-14 00:24:34 +01:00
Curated NotifyLogin data, cleaned up handlers and rearranged code
This commit is contained in:
14
AscNet.GameServer/Handlers/PayModule.cs
Normal file
14
AscNet.GameServer/Handlers/PayModule.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user