mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-16 10:20:30 +00:00
18 lines
442 B
Objective-C
18 lines
442 B
Objective-C
#import "Wesnoth_Scenario_Editor_Prefix.h"
|
|
#import "WNIconListView.h"
|
|
#import "WNTerrains.h"
|
|
#import "WNUnits.h"
|
|
#import "HexUtils.h";
|
|
|
|
@implementation WNIconListView
|
|
-(void)awakeFromNib
|
|
{
|
|
// [WNTerrains init];
|
|
// [WNUnits init];
|
|
[HexUtils initWithWidth: 70];
|
|
NSTableColumn* theColumn = [self tableColumnWithIdentifier:@"image"];
|
|
[theColumn setDataCell:[[NSImageCell alloc] initImageCell:nil]];
|
|
[self reloadData];
|
|
}
|
|
@end
|