Guest User

Untitled

a guest
Jun 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. Executable
  2. ----------
  3.  
  4. class MainClass
  5. {
  6. static void Main (string [] args)
  7. {
  8. ShellApplication.Run();
  9. }
  10. }
  11.  
  12.  
  13. Library
  14. ---------
  15. StudioWindow.xib
  16.  
  17. (StudioWindow)public static void Run(string componentPath)
  18. {
  19. NSApplication.Init ();
  20. NSApplication.Main(new string[] {});
  21. }
  22.  
  23. (AppDelegate)public override void FinishedLaunching (NSObject notification)
  24. {
  25. mainWindowController = new StudioWindowController ();
  26. }
  27.  
  28. public StudioWindowController () : base ("StudioWindow")
  29. {
  30. }
Add Comment
Please, Sign In to add comment