using UnityEngine; using RPG.Core; namespace RPG.Combat { [RequireComponent(typeof(Health))] public class CombatTarget : MonoBehaviour { // This class is intentionally left empty. // It serves as a marker to identify combat targets in the game. } }