mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-17 17:34:35 +01:00
22 lines
538 B
C#
22 lines
538 B
C#
using EpinelPS.Utils;
|
|
using Google.Protobuf.WellKnownTypes;
|
|
|
|
namespace EpinelPS.LobbyServer.Msgs.Arena
|
|
{
|
|
[PacketPath("/arena/champion/get")]
|
|
public class GetChampion : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqGetChampionArena>();
|
|
|
|
var response = new ResGetChampionArena();
|
|
response.Schedule = new NetChampionArenaSchedule();
|
|
|
|
// TODO
|
|
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|