Download aitest.zip, last updated 19/06/2010 (11.27 KB)

Download
  • md5: 9764f053887f43bd6b0b57f7db7496fa
using System.Drawing;

namespace AiTest
{
  class Map
  {
		#region  Public Constructors  

    public Map(Size size)
    {
      this.Size = size;
      this.Tiles = new Tile[size.Width, size.Height];
    }

		#endregion  Public Constructors  

		#region  Public Properties  

    public Size Size { get; set; }

    public Tile[,] Tiles { get; set; }

		#endregion  Public Properties  
  }
}

Donate

Donate