using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QwirkleClassLibrary.Tiles { /// /// This is the constructor for the Shape Enum : it is used to set the shapes avaible for the tiles. /// public enum Shape { Square, Round, Rhombus, Club, Shuriken, Star } }