All Downloads are FREE. Search and download functionalities are using the official Maven repository.

emu.grasscutter.game.inventory.InventoryTab Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package emu.grasscutter.game.inventory;

public interface InventoryTab {
	public GameItem getItemById(int id);
	
	public void onAddItem(GameItem item);
	
	public void onRemoveItem(GameItem item);
	
	public int getSize();
	
	public int getMaxCapacity();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy