private void OnEnable()
 {
     this.attack = this.GetComponent <characterAttack>();
 }
 void Awake()
 {
     attack    = GetComponent <characterAttack>();
     character = GetComponent <characterAttributes>();
     ability   = GetComponent <characterAbilities>();
 }
 void Awake()
 {
     attack = GetComponent <characterAttack>();
 }