IJItemPropertiesViewController.h 388 B

1234567891011121314151617181920
  1. //
  2. // IJItemPropertiesViewController.h
  3. // InsideJob
  4. //
  5. // Created by Adam Preble on 10/9/10.
  6. // Copyright 2010 Adam Preble. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @class IJInventoryItem;
  10. @interface IJItemPropertiesViewController : NSViewController {
  11. IJInventoryItem *item;
  12. }
  13. @property (nonatomic, retain) IJInventoryItem *item;
  14. - (IBAction)closeButton:(id)sender;
  15. @end