Program.cs 337 B

1234567891011121314151617181920
  1. 
  2. using AtomicEngine;
  3. public class Program
  4. {
  5. public static void Main(string[] args)
  6. {
  7. // Create the Application
  8. var app = NETAtomicPlayer.Create(args);
  9. // Managed code in charge of main loop
  10. while (app.RunFrame())
  11. {
  12. }
  13. // Shut 'er down
  14. app.Shutdown();
  15. }
  16. }