using System;

namespace XnaTetris
{
	static class Program
	{
		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		static void Main(string[] args)
		{
			TetrisGame.StartGame();
			//TetrisGame.TestBackgroundBoxes();
			//TetrisGame.TestEmptyGrid();
			//TetrisGame.TestNextBlock();
			//TetrisGame.TestScoreboard();
			//TetrisGame.TestFallingBlockAndLineKill();
		} // Main(args)
	} // class Program
} // namespace XnaTetris