mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-17 09:24:37 +01:00
basic event support
This commit is contained in:
22
nksrv/LobbyServer/Msgs/Minigame/PlaySoda/GetChallengeInfo.cs
Normal file
22
nksrv/LobbyServer/Msgs/Minigame/PlaySoda/GetChallengeInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using nksrv.Utils;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
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
|
||||
WriteData(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user