aboutsummaryrefslogtreecommitdiff
path: root/V3/AI/ActionState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/AI/ActionState.cs')
-rw-r--r--V3/AI/ActionState.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/V3/AI/ActionState.cs b/V3/AI/ActionState.cs
new file mode 100644
index 0000000..18996c8
--- /dev/null
+++ b/V3/AI/ActionState.cs
@@ -0,0 +1,25 @@
+namespace V3.AI
+{
+ /// <summary>
+ /// The state of an action taken by the computer player.
+ /// </summary>
+ public enum ActionState
+ {
+ /// <summary>
+ /// The action is waiting to be executed.
+ /// </summary>
+ Waiting,
+ /// <summary>
+ /// The action is currently being executed.
+ /// </summary>
+ Executing,
+ /// <summary>
+ /// The action has been done successfully.
+ /// </summary>
+ Done,
+ /// <summary>
+ /// The action failed.
+ /// </summary>
+ Failed
+ }
+}