IJInventoryView.h 382 B

123456789101112131415161718192021222324
  1. //
  2. // IJInventoryView.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. @interface IJInventoryView : NSView {
  10. int rows;
  11. int cols;
  12. NSEvent *mouseDownEvent;
  13. NSArray *items;
  14. }
  15. - (void)setRows:(int)numberOfRows columns:(int)numberOfColumns;
  16. - (void)setItems:(NSArray *)theItems;
  17. @end