fix some things

This commit is contained in:
Mikhail Thompson
2024-06-27 23:03:06 +03:00
parent d3ea7d4112
commit 26ecb9e963
9 changed files with 155 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
{
[PacketPath("/User/SetWallpaper")]
public class SetWallpaper : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqSetWallpaper>();
var response = new ResSetWallpaper();
// todo
WriteData(response);
}
}
}