Example #1
0
 protected override void Awake()
 {
     base.Awake();
     wizardAnimator         = GetComponent <WizardAnimator>();
     wizardAttackController = GetComponent <WizardAttackController>();
     InitializeStateMachine();
 }
Example #2
0
 public WizardAttackState(WizardAnimator anim, WizardAttackController wizardAttackController)
 {
     enemyAnim = anim;
     this.wizardAttackController = wizardAttackController;
 }