Program.cs 720 B

1234567891011121314151617181920212223242526272829303132
  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. public static Game1 Game { get; private set; }
  19. /// <summary>
  20. /// The main entry point for the application.
  21. /// </summary>
  22. [STAThread]
  23. static void Main()
  24. {
  25. MonoGameHooks.Initialize();
  26. using (Game = new Game1())
  27. Game.Run();
  28. }
  29. }
  30. }