//----------------------------------------------------------------------------- // Program.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- using System; namespace XnaGraphicsDemo { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { using (var game = new DemoGame()) { game.Run(); } } } }