mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-17 02:43:26 +00:00
16 lines
383 B
Objective-C
16 lines
383 B
Objective-C
#import "Wesnoth_Scenario_Editor_Prefix.h"
|
|
#import "WNTerrainView.h"
|
|
#import "WNTerrains.h"
|
|
#import "WNUnits.h"
|
|
|
|
@implementation WNTerrainView
|
|
-(void)awakeFromNib
|
|
{
|
|
[WNTerrains init];
|
|
[WNUnits init];
|
|
NSTableColumn* theColumn = [self tableColumnWithIdentifier:@"image"];
|
|
[theColumn setDataCell:[[NSImageCell alloc] initImageCell:nil]];
|
|
[self reloadData];
|
|
}
|
|
@end
|