| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Reflection;
- using System.Runtime.InteropServices;
- using FF8.MonoGame;
- using Microsoft.Xna.Framework;
- using Microsoft.Xna.Framework.Audio;
- using MonoGame.OpenAL;
- using MonoGame.Utilities;
- namespace FF8
- {
- /// <summary>
- /// The main class.
- /// </summary>
- public static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- MonoGameHooks.Initialize();
- using (var game = new Game1())
- game.Run();
- }
- }
- }
|