mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-28 19:25:08 +00:00
12 lines
261 B
Objective-C
12 lines
261 B
Objective-C
/* WNTeamList */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface WNTeamList : NSObject
|
|
{
|
|
}
|
|
- (int)numberOfRowsInTableView:(NSTableView *)tableView;
|
|
- (id)tableView:(NSTableView *)tableView
|
|
objectValueForTableColumn:(NSTableColumn *)tableColumn row:(int)row;
|
|
@end
|