using System; namespace Nuclex.Graphics.SpecialEffects.Demo { static class Program { /// /// The main entry point for the application. /// static void Main(string[] args) { using(SpecialEffectsDemoGame game = new SpecialEffectsDemoGame()) { game.Run(); } } } }