Package game.item

Examples of game.item.Item


    slotIndex = i;
  }

  @Override
  public void render(Gui gui, int x, int y, int color) {
    Item item = container.getItemInSlot(this.slotIndex);
    if (item != null) {
      GuiRenderer.render(gui, gui.font, x, y, item.getSpriteIndex(),
          item.getSpriteColor(), 0x00, 1);
    }
  }
View Full Code Here

TOP

Related Classes of game.item.Item

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.