Program.cs 312 B

123456789101112131415
  1. using System;
  2. namespace RobotRampage.iOS
  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. UIKit.UIApplication.Main(args, null, typeof(AppDelegate));
  12. }
  13. }
  14. }