| 12345678910111213141516171819 |
- using System;
- namespace RobotRampage.Windows
- {
- static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- static void Main(string[] args)
- {
- using (var game = new RobotRampageGame())
- {
- game.Run();
- }
- }
- }
- }
|