zc
This commit is contained in:
15
Source/WulaFallenEmpire/EventSystem/AI/Tools/AITool.cs
Normal file
15
Source/WulaFallenEmpire/EventSystem/AI/Tools/AITool.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Verse;
|
||||
|
||||
namespace WulaFallenEmpire.EventSystem.AI.Tools
|
||||
{
|
||||
public abstract class AITool
|
||||
{
|
||||
public abstract string Name { get; }
|
||||
public abstract string Description { get; }
|
||||
public abstract string UsageSchema { get; } // JSON schema or simple description of args
|
||||
|
||||
public abstract string Execute(string args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user