home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / SourceCode / AdobeExamples / NX_HitDetect / HitDetection_main.m < prev    next >
Encoding:
Text File  |  1992-12-19  |  272 b   |  16 lines

  1. /*
  2.  *     Generated by the NeXT Interface Builder.
  3.  */
  4.  
  5. #import <stdlib.h>
  6. #import "DetectApp.h"
  7.  
  8. void main(int argc, char *argv[])
  9. {
  10.     NXApp = [DetectApp new];
  11.     [NXApp loadNibSection:"HitDetection.nib" owner:NXApp];
  12.     [NXApp run];
  13.     [NXApp free];
  14.     exit(0);
  15. }
  16.