Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package worldoffailcraft;
  6.  
  7. import java.lang.reflect.Array;
  8.  
  9. /**
  10. *
  11. * @author Aiden
  12. */
  13. public class Inventory extends Char {
  14.  
  15. Array inv;
  16.  
  17. public Inventory() {
  18. String[] inv;
  19. inv = new String[18];
  20.  
  21. inv[0] = "null";
  22. inv[1] = "null";
  23. inv[2] = "null";
  24. inv[3] = "null";
  25. inv[4] = "null";
  26. inv[5] = "null";
  27. inv[6] = "null";
  28. inv[7] = "null";
  29. inv[8] = "null";
  30. inv[9] = "null";
  31. inv[10] = "null";
  32. inv[11] = "null";
  33. inv[12] = "null";
  34. inv[13] = "null";
  35. inv[14] = "null";
  36. inv[15] = "null";
  37. inv[16] = "null";
  38. inv[17] = "null";
  39. inv[18] = "null";
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement