IJInventoryItem.h 462 B

1234567891011121314151617181920212223
  1. //
  2. // IJInventoryItem.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. @interface IJInventoryItem : NSObject {
  10. uint16_t itemId;
  11. uint16_t damage;
  12. uint8_t count;
  13. uint8_t slot;
  14. }
  15. @property (nonatomic, assign) uint16_t itemId;
  16. @property (nonatomic, assign) uint16_t damage;
  17. @property (nonatomic, assign) uint8_t count;
  18. @property (nonatomic, assign) uint8_t slot;
  19. @end