mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
16 lines
414 B
Objective-C
16 lines
414 B
Objective-C
/* SDLMain.m - main entry point for our Cocoa-ized SDL app
|
|
Initial Version: Darrell Walisser <dwaliss1@purdue.edu>
|
|
Non-NIB-Code & other changes: Max Horn <max@quendi.de>
|
|
|
|
Feel free to customize this file to suit your needs
|
|
*/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
extern int gArgc;
|
|
extern char **gArgv;
|
|
extern BOOL gFinderLaunch;
|
|
extern BOOL gCalledAppMainline;
|
|
|
|
@interface SDLMain : NSObject
|
|
@end
|