insidejob/InsideJobAppDelegate.m
2010-10-07 21:16:30 -04:00

21 lines
431 B
Objective-C

//
// InsideJobAppDelegate.m
// InsideJob
//
// Created by Adam Preble on 10/6/10.
// Copyright 2010 Adam Preble. All rights reserved.
//
#import "InsideJobAppDelegate.h"
#import "IJInventoryWindowController.h"
@implementation InsideJobAppDelegate
@synthesize inventoryWindowController;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
[inventoryWindowController worldSelectionChanged:nil];
}
@end