using UnityEngine; namespace LLM.Commands { public abstract class LLMCommandReceiverBase : MonoBehaviour { [SerializeField] private string targetId; public string TargetId => targetId; public abstract bool TryExecute(LLMCommand command); } }