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 } }