mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
16 lines
558 B
C#
16 lines
558 B
C#
using EggLink.DanhengServer.GameServer.Game.GridFight.Component;
|
|
using EggLink.DanhengServer.Proto;
|
|
using EggLink.DanhengServer.Proto.ServerSide;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Game.GridFight.Sync;
|
|
|
|
public class GridFightShopSyncData(GridFightSrc src, GridFightShopInfoPb data, uint level, uint groupId = 0, params uint[] param) : BaseGridFightSyncData(src, groupId, param)
|
|
{
|
|
public override GridFightSyncData ToProto()
|
|
{
|
|
return new GridFightSyncData
|
|
{
|
|
ShopSyncInfo = data.ToSyncInfo(level)
|
|
};
|
|
}
|
|
} |