using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; namespace Model { public class Map { /// /// The width of the map in tiles /// public int Width = 0; /// /// The height of the map in tiles /// public int Height = 0; /// /// The width of a tile in pixels /// public int TileWidth = 0; /// /// The height of a tile in pixels /// public int TileHeight = 0; /// /// Loaded tile sets /// public Dictionary Tiles = new Dictionary(); /// /// Layers /// public List Layers = new List(); } }