mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
13 lines
339 B
C#
13 lines
339 B
C#
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Game.GridFight.Sync;
|
|
|
|
public class GridFightFinishPendingActionSyncData(GridFightSrc src, uint queuePosition) : BaseGridFightSyncData(src)
|
|
{
|
|
public override GridFightSyncData ToProto()
|
|
{
|
|
return new GridFightSyncData
|
|
{
|
|
};
|
|
}
|
|
} |