From ced3d03bdb3ce866d832e03fb212865140905a9a Mon Sep 17 00:00:00 2001 From: Thomas Leyh Date: Sun, 24 Jul 2016 08:14:18 +0200 Subject: Add project files. --- V3/AI/ActionState.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 V3/AI/ActionState.cs (limited to 'V3/AI/ActionState.cs') 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 +{ + /// + /// The state of an action taken by the computer player. + /// + public enum ActionState + { + /// + /// The action is waiting to be executed. + /// + Waiting, + /// + /// The action is currently being executed. + /// + Executing, + /// + /// The action has been done successfully. + /// + Done, + /// + /// The action failed. + /// + Failed + } +} -- cgit v1.2.1