Program.cs 354 B

12345678910111213141516171819202122
  1. 
  2. using AtomicEngine;
  3. public class Program
  4. {
  5. public static void Main(string[] args)
  6. {
  7. // Create the Application
  8. var app = NETIPCPlayerApp.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. }