mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-16 18:31:32 +00:00
13 lines
393 B
Objective-C
13 lines
393 B
Objective-C
/* WNDefeatList */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface WNDefeatList : 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
|