15 lines
282 B
C#
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);
|
|
}
|
|
}
|
|
|