using System;

namespace XnaBreakout
{
	static class Program
	{
		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		static void Main(string[] args)
		{
			BreakoutGame.StartGame();

			// Static unit tests:
			//BreakoutGame.TestGameSprites();
			//BreakoutGame.TestSounds();
			//BreakoutGame.TestBallCollisions();
		} // Main(args)
	} // class Program
} // namespace XnaBreakout