Initial commit

This commit is contained in:
Mikhail Thompson
2024-06-26 19:03:44 +03:00
commit 838240de58
72 changed files with 4171 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using nksrv.Utils;
namespace nksrv.LobbyServer.Msgs.Outpost
{
[PacketPath("/outpost/recycleroom/get")]
public class GetRecycleRoomData : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = ReadData<ReqGetRecycleRoomData>();
// TODO: save these things
var response = new ResGetRecycleRoomData();
WriteData(response);
}
}
}