mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
11 lines
414 B
C#
11 lines
414 B
C#
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Game.GridFight.Sync;
|
|
|
|
public abstract class BaseGridFightSyncData(GridFightSrc src, uint groupId = 0, params uint[] syncParams)
|
|
{
|
|
public GridFightSrc Src { get; set; } = src;
|
|
public uint GroupId { get; set; } = groupId;
|
|
public uint[] SyncParams { get; set; } = syncParams;
|
|
public abstract GridFightSyncData ToProto();
|
|
} |