mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
lobby ui works
This commit is contained in:
18
nksrv/LobbyServer/Msgs/Misc/GachaGetAllShutdownFlags.cs
Normal file
18
nksrv/LobbyServer/Msgs/Misc/GachaGetAllShutdownFlags.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using nksrv.Utils;
|
||||
|
||||
namespace nksrv.LobbyServer.Msgs.Misc
|
||||
{
|
||||
[PacketPath("/shutdownflags/gacha/getall")]
|
||||
public class GachaGetAllShutdownFlags : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var req = await ReadData<ReqGachaGetAllShutdownFlags>();
|
||||
|
||||
var response = new ResGachaGetAllShutdownFlags();
|
||||
|
||||
// TODO: Validate response from real server and pull info from user info
|
||||
WriteData(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user