using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace LD_24.Code { /// /// Enum for storing the type of each tile in a map /// public enum MapTile { Empty, Wall, Friend, Pizzeria, MeetingSpot } }