Program.cs 286 B

1234567891011121314
  1. using System;
  2. using UIKit;
  3. namespace ChaseAndEvade.iOS
  4. {
  5. public class Application
  6. {
  7. // This is the main entry point of the application.
  8. static void Main(string[] args)
  9. {
  10. UIApplication.Main(args, null, typeof(AppDelegate));
  11. }
  12. }
  13. }