using System; namespace XnaBreakout { static class Program { /// /// The main entry point for the application. /// static void Main(string[] args) { BreakoutGame.StartGame(); // Static unit tests: //BreakoutGame.TestGameSprites(); //BreakoutGame.TestSounds(); //BreakoutGame.TestBallCollisions(); } // Main(args) } // class Program } // namespace XnaBreakout