예제 #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));
 }