コード例 #1
0
ファイル: ExitStageAction.cs プロジェクト: lulzzz/Nucleus
 public ExitStageAction(MapCell cell, StageExit exit)
 {
     Trigger = new ActionCellInputTrigger(cell.Index, InputFunction.Move);
     SelfEffects.Add(new ExitStageEffect(exit));
 }
コード例 #2
0
ファイル: ExitStageAction.cs プロジェクト: lulzzz/Nucleus
 public ExitStageAction(StageExit exit)
 {
     Trigger = new ActionInputTrigger(InputFunction.UseExit);
     SelfEffects.Add(new ExitStageEffect(exit));
 }