using System; using Microsoft.Xna.Framework.Input; namespace Nuclex.Input.Demo { #if WINDOWS || XBOX static class Program { /// /// The main entry point for the application. /// static void Main(string[] args) { using (InputDemoGame game = new InputDemoGame()) { game.Run(); } } } #endif }