Restart() public method

public Restart ( ) : void
return void
Ejemplo n.º 1
0
 public virtual void Reset()
 {
     if (stateMachine != null)
     {
         stateMachine.Restart();
     }
 }
Ejemplo n.º 2
0
    // ------------------------------------------------------------------
    // Desc:
    // ------------------------------------------------------------------

    public void RestartFSM()
    {
        if (stateMachine != null)
        {
            stateMachine.Restart();
        }
    }