Beispiel #1
0
 /// <summary>
 /// Runs the current state OnRun method
 /// </summary>
 public void OnRun()
 {
     if (currentState != null)
     {
         currentState.OnRun();
     }
 }