mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-19 10:24:36 +01:00
lobby ui works
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using nksrv.Utils;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace nksrv.LobbyServer.Msgs.Shop.InApp
|
||||
{
|
||||
[PacketPath("/inappshop/getmonthlysubscriptionreward")]
|
||||
public class GetMonthlySubscriptionReward : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var req = await ReadData<ReqGetMonthlySubscriptionReward>();
|
||||
|
||||
var response = new ResGetMonthlySubscriptionReward();
|
||||
|
||||
// TODO: Validate response from real server
|
||||
WriteData(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user