mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-16 08:54:47 +01:00
levelup, item and synchro device fixes
This commit is contained in:
23
nksrv/LobbyServer/Msgs/User/ReadMail.cs
Normal file
23
nksrv/LobbyServer/Msgs/User/ReadMail.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user