using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FiestaTunnel { public class Map { public Dictionary Characters = new Dictionary(); public short MapID { get; set; } public Map() { } public Map(short mapid) { this.MapID = mapid; } } }