
Program.cs
By: a guest on
Jul 28th, 2010 | syntax:
C# | size: 0.29 KB | hits: 53 | expires: Never
using System;
namespace ConsoleMenu
{
class Program
{
static void Main(string[] args)
{
Game game = new Game();
game.Begin();
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}