10 lines
297 B
C#
10 lines
297 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public class WaitForeverIntentExecutionLogic : IntentExecutionLogic
|
|
{
|
|
public override IntentExecutionResult Execute(Agent agent, in AgentIntent intent)
|
|
{
|
|
return IntentExecutionResult.InProgress;
|
|
}
|
|
}
|
|
} |