Files
2026-07-08 20:42:51 +08:00

15 lines
282 B
C#

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