Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import java.awt.Image;
  2.  
  3. public class inventory
  4. {
  5. Image cur;
  6. block[][] items;
  7.  
  8. public inventory()
  9. {
  10. this.items = new block[6][4];
  11. }
  12.  
  13. public void update()
  14. {
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement