Program.cs 399 B

123456789101112131415
  1. using UIKit;
  2. namespace Flocking.iOS
  3. {
  4. public class Application
  5. {
  6. // This is the main entry point of the application.
  7. static void Main(string[] args)
  8. {
  9. // if you want to use a different Application Delegate class from "AppDelegate"
  10. // you can specify it here.
  11. UIApplication.Main(args, null, typeof(AppDelegate));
  12. }
  13. }
  14. }