Removed Mac MainMenu.xib, the app and window menus are now generated dynamically.

[CL 2088627 by Michael Trepka in Main branch]
This commit is contained in:
Michael Trepka
2014-05-29 17:46:24 -04:00
committed by UnrealBot
parent 2c46c1957a
commit e0b50589d2
17 changed files with 140 additions and 874 deletions
@@ -19,16 +19,6 @@ static FString GSavedCommandLine;
[NSApp terminate: self];
}
- (IBAction)OnQuitRequest:(id)Sender
{
[NSApp terminate: self];
}
- (IBAction)OnShowAboutWindow:(id)Sender
{
[NSApp orderFrontStandardAboutPanel: Sender];
}
@end
int main(int argc, char *argv[])
@@ -44,5 +34,9 @@ int main(int argc, char *argv[])
GSavedCommandLine += Argument;
}
return NSApplicationMain(argc, (const char **)argv);
SCOPED_AUTORELEASE_POOL;
[NSApplication sharedApplication];
[NSApp setDelegate:[UE4AppDelegate new]];
[NSApp run];
return 0;
}