Interface IBotWithQueue<T>
The interface for an automated bot with a queue of actions.
Inherited Members
Namespace: Microsoft.XboxStudios.BotBrain
Assembly: BotBrain.Abstractions.dll
Syntax
public interface IBotWithQueue<T> : IBotWithQueue, IAutomatedBot<T>, IAutomatedBot, IHasParameters
Type Parameters
Name | Description |
---|---|
T | The type of actions the bot supports. |
Methods
View SourceSetActions(IEnumerable<T>)
Sets the action queue.
Declaration
Task SetActions(IEnumerable<T> actions)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<T> | actions | The actions. |
Returns
Type | Description |
---|---|
Task | A task. |