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