farmlands/oldproject/Assets/Scripts/Model/Layer.cs

19 lines
280 B
C#
Executable File

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;
}
}