~ubuntu-branches/ubuntu/lucid/tuxtype/lucid-proposed

« back to all changes in this revision

Viewing changes to tuxtype/SDLMain.h

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2006-10-30 13:48:49 UTC
  • mfrom: (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20061030134849-5fdruftday0c02gs
Tags: 1.5.6.dfsg1-3ubuntu1
Merge from debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*   SDLMain.m - main entry point for our Cocoa-ized SDL app
 
2
       Initial Version: Darrell Walisser <dwaliss1@purdue.edu>
 
3
       Non-NIB-Code & other changes: Max Horn <max@quendi.de>
 
4
 
 
5
    Feel free to customize this file to suit your needs
 
6
*/
 
7
 
 
8
#import <Cocoa/Cocoa.h>
 
9
 
 
10
@interface SDLMain : NSObject
 
11
{
 
12
}
 
13
- (IBAction)prefsMenu:(id)sender;
 
14
- (IBAction)newGame:(id)sender;
 
15
- (IBAction)openGame:(id)sender;
 
16
- (IBAction)saveGame:(id)sender;
 
17
- (IBAction)saveGameAs:(id)sender;
 
18
- (IBAction)help:(id)sender;
 
19
@end