using System; namespace DW { /// /// Entry class for the application /// static class Program { /// /// The main entry point for the application. /// static void Main(string[] args) { using (AISample game = new AISample()) { game.Run(); } } } }