示例#1
0
 public ExitStageAction(MapCell cell, StageExit exit)
 {
     Trigger = new ActionCellInputTrigger(cell.Index, InputFunction.Move);
     SelfEffects.Add(new ExitStageEffect(exit));
 }
示例#2
0
 public ExitStageAction(StageExit exit)
 {
     Trigger = new ActionInputTrigger(InputFunction.UseExit);
     SelfEffects.Add(new ExitStageEffect(exit));
 }