mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-24 20:21:20 +00:00
19 lines
321 B
Mathematica
19 lines
321 B
Mathematica
|
/*
|
||
|
* AppController.m
|
||
|
*
|
||
|
* GNUstep Renaissance Application Controller
|
||
|
*
|
||
|
* Created with ProjectCenter - http://www.gnustep.org
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "AppController.h"
|
||
|
|
||
|
@implementation AppController
|
||
|
|
||
|
- (void) applicationDidFinishLaunching: (NSNotification *)not
|
||
|
{
|
||
|
[NSBundle loadGSMarkupNamed: @"Main" owner: self];
|
||
|
}
|
||
|
@end
|