public void AttackEnemy()
 {
     if (m_Enemy != null)
     {
         m_Enemy.Kill();
         SetAttackingEnemy(null);
     }
 }