Main.cs 456 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MonoTouch.Foundation;
  5. using MonoTouch.UIKit;
  6. namespace MonoGame.Samples.VideoPlayer
  7. {
  8. public class Application
  9. {
  10. // This is the main entry point of the application.
  11. static void Main (string[] args)
  12. {
  13. // if you want to use a different Application Delegate class from "AppDelegate"
  14. // you can specify it here.
  15. UIApplication.Main (args, null, "AppDelegate");
  16. }
  17. }
  18. }