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