using Unity.VisualScripting; using UnityEngine; public class Damage_Melee: Damage { protected override void HandleCollision(Collider other) { ApplyDamage(other); } }