11 lines
265 B
C#
11 lines
265 B
C#
using UnityEngine;
|
|
|
|
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.
|
|
}
|
|
} |