Files
Echo/Assets/_Project/Scripts/LLM Manager/Commands/LLMCommandReceiverBase.cs
T

15 lines
282 B
C#
Raw Normal View History

2026-07-08 19:53:15 +08:00
using UnityEngine;
namespace LLM.Commands
{
public abstract class LLMCommandReceiverBase : MonoBehaviour
{
[SerializeField] private string targetId;
public string TargetId => targetId;
public abstract bool TryExecute(LLMCommand command);
}
}