levelup, item and synchro device fixes

This commit is contained in:
Mikhail
2024-07-07 14:45:00 -04:00
parent 1fac57b254
commit e9ff2caba2
11 changed files with 216 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
using nksrv.Utils;
using Swan;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs.User
{
[PacketPath("/mail/read")]
public class ReadMail : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqReadMail>();
var r = new ResReadMail();
//TODO
WriteData(r);
}
}
}