mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 15:34:36 +01:00
24 lines
509 B
C#
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);
|
|
}
|
|
}
|
|
}
|