/** * This class was created by <Vazkii>. It's distributed as * part of the Botania Mod. Get the Source Code in github: * https://github.com/Vazkii/Botania * * Botania is Open Source and distributed under the * Botania License: http://botaniamod.net/license.php * * File Created @ [Jan 18, 2015, 12:20:44 AM (GMT)] */ package vazkii.botania.api.item; /** * Used to define a Mana Pool that can be dyed through floral powder. */ public interface IDyablePool { public int getColor(); public void setColor(int color); }