2
0

Program.cs 368 B

12345678910111213141516171819
  1. using System;
  2. namespace ParticleSample
  3. {
  4. static class Program
  5. {
  6. /// <summary>
  7. /// The main entry point for the application.
  8. /// </summary>
  9. static void Main(string[] args)
  10. {
  11. using (ParticleSampleGame game = new ParticleSampleGame())
  12. {
  13. game.Run();
  14. }
  15. }
  16. }
  17. }