Program.cs 229 B

12345678910111213
  1. using System;
  2. namespace FarseerPhysics.DesktopGL
  3. {
  4. public static class Program
  5. {
  6. static void Main()
  7. {
  8. using (var game = new FarseerPhysicsGame())
  9. game.Run();
  10. }
  11. }
  12. }