mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
14 lines
884 B
C#
14 lines
884 B
C#
using EggLink.DanhengServer.GameServer.Game.Battle;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Game.ChessRogue.Modifier.ModifierEffect
|
|
{
|
|
public abstract class ModifierEffectHandler
|
|
{
|
|
public abstract ValueTask OnConfirmed(ChessRogueDiceModifierInstance modifierInstance, ChessRogueInstance chessRogueInstance);
|
|
public abstract ValueTask SelectModifierCell(ChessRogueDiceModifierInstance modifierInstance, ChessRogueInstance chessRogueInstance, int selectCellId);
|
|
public abstract ValueTask SelectCell(ChessRogueDiceModifierInstance modifierInstance, ChessRogueInstance chessRogueInstance, int selectCellId);
|
|
public abstract void BeforeBattle(ChessRogueDiceModifierInstance modifierInstance, BattleInstance battle);
|
|
public abstract ValueTask AfterBattle(ChessRogueDiceModifierInstance modifierInstance, BattleInstance battle);
|
|
}
|
|
}
|