Program.cs 360 B

1234567891011121314151617181920212223
  1. /*
  2. * Created by SharpDevelop.
  3. * User: d_ellis
  4. * Date: 02/08/2011
  5. * Time: 16:59
  6. *
  7. * To change this template use Tools | Options | Coding | Edit Standard Headers.
  8. */
  9. using System;
  10. namespace NetRumble
  11. {
  12. class Program
  13. {
  14. public static void Main(string[] args)
  15. {
  16. using(NetRumbleGame game = new NetRumbleGame())
  17. {
  18. game.Run();
  19. }
  20. }
  21. }
  22. }