예제 #1
0
파일: GameState.cs 프로젝트: boyP/Patient
 public void Start()
 {
     mainAction.Start();
     if (actionToInterrupt != null)
     {
         actionToInterrupt.Interrupt();
     }
 }
예제 #2
0
 // Nothing to interrupt
 public override void Interrupt()
 {
     action.Interrupt();
 }
예제 #3
0
 public override void Interrupt()
 {
     current.Interrupt();
 }