Oops, back out that SDL_main -> SDLMain conversion

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40195
This commit is contained in:
Sam Lantinga 2001-09-23 21:09:08 +00:00
parent 6abb357c70
commit 1e5a9f6ffa
9 changed files with 19 additions and 19 deletions

15
src/main/macosx/SDLMain.h Normal file
View file

@ -0,0 +1,15 @@
/* SDLMain.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 SDLMain : NSObject
{
}
- (IBAction)quit:(id)sender;
- (IBAction)makeFullscreen:(id)sender;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
@end