Files
EpinelPS/nksrv/LobbyServer/Msgs/User/GetProfileDecoration.cs
2024-07-19 10:53:02 -04:00

19 lines
529 B
C#

using nksrv.Utils;
namespace nksrv.LobbyServer.Msgs.User
{
[PacketPath("/ProfileCard/DecorationLayout/Get")]
public class GetProfileDecoration : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqProfileCardDecorationLayout>();
var r = new ResProfileCardDecorationLayout();
r.Layout = new ProfileCardDecorationLayout();
r.Layout.BackgroundId = 101002;
await WriteDataAsync(r);
}
}
}