using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DominionBase.Players { public enum PhaseEnum { Waiting, // Waiting for things to start Action, // Able to play Action cards Treasure, // Able to play Treasure cards Buy, // Able to buy cards from the supply Cleanup, // Performing cleanup Endgame, // End of the game Choosing, // In the process of making a choice Playing, // In the process of playing a card Starting // Starting player's turn } }