mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-01 11:11:21 +00:00
13 lines
395 B
Objective-C
13 lines
395 B
Objective-C
/* WNVictoryList */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface WNVictoryList : NSObject
|
|
{
|
|
}
|
|
- (int)numberOfRowsInTableView:(NSTableView *)tableView;
|
|
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(int)row;
|
|
- (void)tableView:(NSTableView *)aTableView
|
|
setObjectValue:(id)anObject forTableColumn:(NSTableColumn *)tableColumn row:(int)rowIndex;
|
|
@end
|