InsideJobAppDelegate.m 431 B

1234567891011121314151617181920
  1. //
  2. // InsideJobAppDelegate.m
  3. // InsideJob
  4. //
  5. // Created by Adam Preble on 10/6/10.
  6. // Copyright 2010 Adam Preble. All rights reserved.
  7. //
  8. #import "InsideJobAppDelegate.h"
  9. #import "IJInventoryWindowController.h"
  10. @implementation InsideJobAppDelegate
  11. @synthesize inventoryWindowController;
  12. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  13. [inventoryWindowController worldSelectionChanged:nil];
  14. }
  15. @end