Program.cs 452 B

123456789101112131415
  1. using MonoGameDistortionSample.Core;
  2. internal class Program
  3. {
  4. /// <summary>
  5. /// The main entry point for the application.
  6. /// This creates an instance of your game and calls it's Run() method
  7. /// </summary>
  8. /// <param name="args">Command-line arguments passed to the application.</param>
  9. private static void Main(string[] args)
  10. {
  11. using var game = new MonoGameDistortionSampleGame();
  12. game.Run();
  13. }
  14. }