Main.cs 222 B

12345678910111213
  1. using UIKit;
  2. namespace AtomicPlayer
  3. {
  4. public class AtomicApp
  5. {
  6. // This is the main entry point of the application.
  7. static void Main(string[] args)
  8. {
  9. UIApplication.Main(args, null, "AppUIDelegate");
  10. }
  11. }
  12. }