Ejemplo n.º 1
0
 public void IsAttacking(bool IsAttacking)
 {
     if (IsAttacking)
     {
         PlayerControllerStateMachine.Fighting(this);
     }
     else
     {
         PlayerControllerStateMachine.Patrolling(this);
     }
 }