misc changes

This commit is contained in:
Mikhail
2024-07-16 20:27:56 -04:00
parent 7a1f361d25
commit 9cf99754d6
22 changed files with 80 additions and 35 deletions

View File

@@ -0,0 +1,24 @@
using nksrv.Net;
using nksrv.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs.Outpost
{
[PacketPath("/outpost/obtainfastbattlereward")]
public class DoWipeout : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<DoWipeOutRequest>();
var response = new DoWipeOutResponse();
// TODO
await WriteDataAsync(response);
}
}
}