SDL-mirror/src/main/macosx/SDL_main.h
Sam Lantinga 5fb411a341 Changed SDLMain to SDL_main for MacOS X stuff
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40192
2001-09-23 20:42:00 +00:00

15 lines
373 B
Objective-C

/* SDL_main.h - main entry point for our Cocoa-ized SDL app
Darrell Walisser - dwaliss1@purdue.edu
Feel free to customize this file to suit your needs
*/
#import <Cocoa/Cocoa.h>
@interface SDL_main : NSObject
{
}
- (IBAction)quit:(id)sender;
- (IBAction)makeFullscreen:(id)sender;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
@end