Files
EpinelPS/nksrv/LobbyServer/Msgs/GetGacha.cs
Mikhail Thompson 846b72ce9d main quest works
2024-06-29 15:11:42 +03:00

23 lines
508 B
C#

using Google.Protobuf.WellKnownTypes;
using nksrv.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs
{
[PacketPath("/Gacha/Get")]
public class GetGacha : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = ReadData<ReqGetGachaData>();
var response = new ResGetGachaData();
WriteData(response);
}
}
}