IJMinecraftLevel.h 329 B

123456789101112131415161718
  1. //
  2. // IJMinecraftLevel.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. #import "NBTContainer.h"
  10. @interface IJMinecraftLevel : NBTContainer {
  11. }
  12. @property (nonatomic, copy) NSArray *inventory; // Array of IJInventoryItem objects.
  13. @end