Files
EpinelPS/nksrv/LobbyServer/Msgs/GetGacha.cs
Mikhail Thompson 838240de58 Initial commit
2024-06-26 19:03:44 +03:00

24 lines
509 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);
}
}
}