mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 13:01:21 +00:00
62b37ddb68
git-svn-id: https://svn.eduke32.com/eduke32@4648 1a8010ca-5511-0410-912e-c29ae57300e0
26 lines
634 B
Objective-C
26 lines
634 B
Objective-C
/*
|
|
* GameListSource.game.h
|
|
* duke3d
|
|
*
|
|
* Created by Jonathon Fowler on 24/07/09.
|
|
* Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <AppKit/AppKit.h>
|
|
|
|
@interface GameListSource : NSObject <NSComboBoxDataSource>
|
|
{
|
|
NSMutableArray *list;
|
|
}
|
|
- (id)init;
|
|
- (void)dealloc;
|
|
- (GrpFile*)grpAtIndex:(int)index;
|
|
- (int)findIndexForGrpname:(NSString*)grpname;
|
|
- (id)tableView:(NSTableView *)aTableView
|
|
objectValueForTableColumn:(NSTableColumn *)aTableColumn
|
|
row:(NSInteger)rowIndex;
|
|
- (int)numberOfRowsInTableView:(NSTableView *)aTableView;
|
|
@end
|
|
|