mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 15:34:36 +01:00
25 lines
671 B
C#
25 lines
671 B
C#
using nksrv.Utils;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.Character
|
|
{
|
|
[PacketPath("/character/attractive/get")]
|
|
public class GetCharacterAttractiveList : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqGetAttractiveList>();
|
|
|
|
var response = new ResGetAttractiveList();
|
|
response.CounselAvailableCount = 3; // TODO
|
|
|
|
// TODO: Validate response from real server and pull info from user info
|
|
WriteData(response);
|
|
}
|
|
}
|
|
}
|