using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace QwirkleClassLibrary { /// /// Enum is used to have a finished number of shapes for the tiles. /// public enum Shape { Square, Round, Rhombus, Club, Shuriken, Star } }