AiTest/Tile.cs

Download

aitest.zip

(11.27 KB | 19 June 2010 )

Sample project for implementing the AI of the Butterfly and Firefly sprites of the Boulderdash arcade game.

Donate

Contents of aitest.zip/AiTest/Tile.cs

using System.Drawing;

namespace AiTest
{
  class Tile
  {
		#region  Public Properties  

    public Point Location { get; set; }

    public bool Solid { get; set; }

		#endregion  Public Properties  
  }
}

Files