mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-09 23:11:39 +00:00
c04d5309f9
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@32 af15c1b1-3010-417e-b628-4374ebc0bcbd
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
|