Program.cs 669 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Reflection;
  5. using System.Runtime.InteropServices;
  6. using FF8.MonoGame;
  7. using Microsoft.Xna.Framework;
  8. using Microsoft.Xna.Framework.Audio;
  9. using MonoGame.OpenAL;
  10. using MonoGame.Utilities;
  11. namespace FF8
  12. {
  13. /// <summary>
  14. /// The main class.
  15. /// </summary>
  16. public static class Program
  17. {
  18. /// <summary>
  19. /// The main entry point for the application.
  20. /// </summary>
  21. [STAThread]
  22. static void Main()
  23. {
  24. MonoGameHooks.Initialize();
  25. using (var game = new Game1())
  26. game.Run();
  27. }
  28. }
  29. }