mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-16 17:04:44 +01:00
18 lines
481 B
C#
18 lines
481 B
C#
using nksrv.Utils;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.Minigame.PlaySoda
|
|
{
|
|
[PacketPath("/event/minigame/playsoda/challenge/getinfo")]
|
|
public class GetChallengeInfo : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqGetPlaySodaChallengeModeInfo>();
|
|
|
|
var response = new ResGetPlaySodaChallengeModeInfo();
|
|
// TODO
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|