home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / HandsOn / WindowsGame1 / Program.cs < prev    next >
Encoding:
Text File  |  2006-09-07  |  358 b   |  20 lines

  1. using System;
  2.  
  3. namespace StopTheLogo
  4. {
  5.     static class Program
  6.     {
  7.         /// <summary>
  8.         /// The main entry point for the application.
  9.         /// </summary>
  10.         static void Main(string[] args)
  11.         {
  12.             using (Game1 game = new Game1())
  13.             {
  14.                 game.Run();
  15.             }
  16.         }
  17.     }
  18. }
  19.  
  20.