Program.cs 250 B

123456789101112
  1. // DesktopGL entry point
  2. namespace Graphics3DSample.DesktopGL
  3. {
  4. public static class Program
  5. {
  6. public static void Main()
  7. {
  8. using (var game = new Graphics3DSampleGame())
  9. game.Run();
  10. }
  11. }
  12. }