lobby ui works

This commit is contained in:
Mikhail Thompson
2024-06-27 20:48:15 +03:00
parent 4ffb238c6e
commit d3ea7d4112
27 changed files with 826 additions and 15 deletions

View 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);
}
}
}