mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-03 13:21:45 +00:00
12 lines
274 B
Objective-C
12 lines
274 B
Objective-C
/* WNUnitList */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface WNUnitList : NSObject
|
|
{
|
|
}
|
|
- (void)awakeFromNib;
|
|
- (int)numberOfRowsInTableView:(NSTableView *)tableView;
|
|
- (id)tableView:(NSTableView *)tableView objectValueForTableColumn:(NSTableColumn *)tableColumn row:(int)row;
|
|
@end
|