mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
Initial commit
This commit is contained in:
18
nksrv/LobbyServer/Msgs/Outpost/GetRecycleRoomData.cs
Normal file
18
nksrv/LobbyServer/Msgs/Outpost/GetRecycleRoomData.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user