#import #import #import "c4delegate.h" int main(int argc, const char **argv) { [NSApplication sharedApplication]; // NSApp is a global variable declared elsewhere that is set by // NSApplication.sharedApplication to whatever that method returns [NSApp setDelegate: [[Connect4Delegate alloc] init]]; return NSApplicationMain(argc, argv); }