mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-16 06:44:41 +01:00
Init enter game
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using KianaBH.Data;
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
using KianaBH.Util.Extensions;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Player;
|
||||
|
||||
public class PacketGetThemeDataRsp : BasePacket
|
||||
{
|
||||
public PacketGetThemeDataRsp() : base(CmdIds.GetThemeDataRsp)
|
||||
{
|
||||
|
||||
var proto = new GetThemeDataRsp
|
||||
{
|
||||
ThemeList =
|
||||
{
|
||||
GameData.ThemeDataAvatar.Values.Select(x => new ThemeData
|
||||
{
|
||||
BeginTime = 1583373600,
|
||||
EndTime = 2080843200,
|
||||
ThemeId = x.AvatarData
|
||||
})
|
||||
}
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user