AiTest/Program.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/Program.cs

using System;
using System.Windows.Forms;

namespace AiTest
{
  static class Program
  {
		#region  Private Class Methods  

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);
      Application.Run(new MainForm());
    }

		#endregion  Private Class Methods  
  }
}

Files