mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-28 20:03:18 +00:00
15 lines
342 B
Objective-C
15 lines
342 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>
|
|
Edited a lot for Wesnoth by Ben Anderman <ben@happyspork.com>
|
|
*/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface SDLMain : NSObject
|
|
{
|
|
}
|
|
- (IBAction)openHomepage:(id)sender;
|
|
@end
|