Program.cs 364 B

1234567891011121314151617181920
  1. using System;
  2. using AtomicEngine;
  3. namespace AtomicBlaster
  4. {
  5. public static class AtomicMain
  6. {
  7. /// <summary>
  8. /// The main entry point for the application.
  9. /// </summary>
  10. static void Main(string[] args)
  11. {
  12. gameroot = new GameRoot();
  13. }
  14. public static GameRoot gameroot;
  15. }
  16. }