using UnityEngine; /// /// Attach this to an enemy's head GameObject. /// When the player shoots it, SimpleGun checks for this component and instakills. /// public class EnemyHeadHitbox : MonoBehaviour { [HideInInspector] public EnemyHealth enemyHealth; }