public void OnFastAttack()
 {
     button            = true;
     this.currentState = EControlsState.FASTATTACK;
     //OnControlerChangeState();
 }
 public void OnMoveLeft()
 {
     button            = true;
     this.currentState = EControlsState.MOVELEFT;
     //OnControlerChangeState();
 }
 public void OnMoveright()
 {
     button            = true;
     this.currentState = EControlsState.MOVERIGHT;
     //OnControlerChangeState();
 }
 public void OnMoveDown()
 {
     button            = true;
     this.currentState = EControlsState.MOVEDOWN;
     //OnControlerChangeState();
 }
 public void OnDash()
 {
     button            = true;
     this.currentState = EControlsState.DASH;
     //OnControlerChangeState();
 }
 public void OnSlowAttack()
 {
     button            = true;
     this.currentState = EControlsState.SLOWATTACK;
     //OnControlerChangeState();
 }