Program.cs 262 B

1234567891011121314
  1. using System;
  2. using MonoGame.Framework;
  3. namespace ParticleSample.iOS
  4. {
  5. public static class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. using (var game = new ParticleSampleGame())
  10. game.Run();
  11. }
  12. }
  13. }