using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; namespace Model { public class Layer { public string Name; public int Width; public int Height; public int[,] Cells; } }