mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-16 17:04:44 +01:00
Initial commit
This commit is contained in:
16
nksrv/LobbyServer/Msgs/Badge/SyncBadge.cs
Normal file
16
nksrv/LobbyServer/Msgs/Badge/SyncBadge.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using nksrv.Utils;
|
||||
|
||||
namespace nksrv.LobbyServer.Msgs.Badge
|
||||
{
|
||||
[PacketPath("/badge/sync")]
|
||||
public class SyncBadge : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var req = ReadData<ReqSyncBadge>();
|
||||
|
||||
var response = new ResSyncBadge();
|
||||
WriteData(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user