Program.cs 319 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Reflection;
  4. using System.Linq;
  5. using AtomicEngine;
  6. using AtomicBlaster;
  7. namespace AtomicPlayer
  8. {
  9. public class Program
  10. {
  11. public static void Main(string[] args)
  12. {
  13. Application.Run<GameRoot>(args);
  14. }
  15. }
  16. }