IJInventoryWindowController.h 711 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // IJInventoryWindowController.h
  3. // InsideJob
  4. //
  5. // Created by Adam Preble on 10/7/10.
  6. // Copyright 2010 Adam Preble. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @class IJMinecraftLevel;
  10. @interface IJInventoryWindowController : NSWindowController {
  11. IJMinecraftLevel *level;
  12. NSArray *inventory;
  13. NSOutlineView *outlineView;
  14. NSPopUpButton *worldPopup;
  15. NSArray *rootItems;
  16. NSMutableArray *armorItem;
  17. NSMutableArray *quickItem;
  18. NSMutableArray *inventoryItem;
  19. BOOL dirty;
  20. int64_t sessionLockValue;
  21. }
  22. @property (nonatomic, assign) IBOutlet NSOutlineView *outlineView;
  23. @property (nonatomic, assign) IBOutlet NSPopUpButton *worldPopup;
  24. - (IBAction)worldSelectionChanged:(id)sender;
  25. @end