mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
19 lines
529 B
C#
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);
|
|
}
|
|
}
|
|
}
|