aboutsummaryrefslogtreecommitdiff
path: root/V3/AI/IAction.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/AI/IAction.cs')
-rw-r--r--V3/AI/IAction.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/V3/AI/IAction.cs b/V3/AI/IAction.cs
new file mode 100644
index 0000000..b68355f
--- /dev/null
+++ b/V3/AI/IAction.cs
@@ -0,0 +1,24 @@
+namespace V3.AI
+{
+ /// <summary>
+ /// An action that can be taken by the computer player.
+ /// </summary>
+ public interface IAction
+ {
+ /// <summary>
+ /// The current state of the action.
+ /// </summary>
+ ActionState State { get; }
+
+ /// <summary>
+ /// Start the execution of the action.
+ /// </summary>
+ void Start();
+
+ /// <summary>
+ /// Update the execution state. This method should be repateatingly
+ /// called as long as State is Executing.
+ /// </summary>
+ void Update();
+ }
+}