AiTest2/Tile.cs

Download

aitest2.zip

(14.13 KB | 07 July 2010 )

Sample project for implementing collision detection in the sprites of the Boulder Dash (Boulderdash) arcade game.

Donate

Contents of aitest2.zip/AiTest2/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