using System; namespace OpenVIII.DirectX { #if WINDOWS /// /// The main class. /// public static class Program { /// /// The main entry point for the application. /// [STAThread] private static void Main(string[] args) { using (var game = new Game1()) { game.Arguments = args; game.Run(); } } } #endif }