mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
10 lines
340 B
C#
10 lines
340 B
C#
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Game.GridFight.PendingAction;
|
|
|
|
public abstract class BaseGridFightPendingAction(GridFightInstance inst)
|
|
{
|
|
public GridFightInstance Inst { get; set; } = inst;
|
|
public uint QueuePosition { get; set; }
|
|
public abstract GridFightPendingAction ToProto();
|
|
} |