using UnityEngine; /// /// Base class for all characters that can interact in the world (e.g., player, follower). /// public abstract class Character : MonoBehaviour { // Placeholder for shared character logic or properties. // For now, this is intentionally minimal. }