add nickname support, try to fix campaign stage save

This commit is contained in:
Mikhail Thompson
2024-06-26 23:01:45 +03:00
parent d5d6844c97
commit 49d77bb5f7
9 changed files with 101 additions and 28 deletions

View File

@@ -0,0 +1,22 @@
using nksrv.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs.User.Tutorial
{
[PacketPath("/tutorial/set")]
public class SetTutorial : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqSetTutorial>();
Console.WriteLine("TODO - clear tutorial with tid: " + req.LastClearedTid);
var response = new ResSetTutorial();
WriteData(response);
}
}
}