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