Files
EpinelPS/nksrv/LobbyServer/Msgs/User/GetProfileDecoration.cs
2024-07-11 14:35:48 -04:00

24 lines
644 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.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);
}
}
}