home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Games / NeXTGo-3.0-MIS / NeXTGo_main.m < prev    next >
Encoding:
Text File  |  1997-10-23  |  409 b   |  21 lines

  1. /* Generated by the NeXT Project Builder 
  2.    NOTE: Do NOT change this file -- Project Builder maintains it.
  3. */
  4.  
  5. #import "GoApp.h"
  6.  
  7. void main(int argc, char *argv[]) {
  8.  
  9.     NSAutoreleasePool *myPool = [[NSAutoreleasePool alloc] init];
  10.  
  11.     [GoApp sharedApplication];
  12.     if ([NSBundle loadNibNamed:@"NeXTGo.nib" owner:NSApp])
  13.         [NSApp run];
  14.         
  15.     [NSApp release];
  16.  
  17.     [myPool release];
  18.  
  19.     exit(0);
  20. }
  21.