2001-09-23 20:42:00 +00:00
|
|
|
/* SDL_main.h - main entry point for our Cocoa-ized SDL app
|
2001-08-21 07:19:59 +00:00
|
|
|
Darrell Walisser - dwaliss1@purdue.edu
|
|
|
|
|
|
|
|
Feel free to customize this file to suit your needs
|
|
|
|
*/
|
|
|
|
|
2001-06-07 14:28:11 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2001-09-23 20:42:00 +00:00
|
|
|
@interface SDL_main : NSObject
|
2001-06-07 14:28:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
- (IBAction)quit:(id)sender;
|
2001-09-04 23:18:45 +00:00
|
|
|
- (IBAction)makeFullscreen:(id)sender;
|
2001-08-21 07:19:59 +00:00
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
|
2001-06-07 14:28:11 +00:00
|
|
|
@end
|