2013-05-03 13:00:44 +00:00
|
|
|
package forestry.api.apiculture;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2013-05-20 09:06:50 +00:00
|
|
|
import forestry.api.genetics.IFlowerProvider;
|
|
|
|
|
2013-05-03 13:00:44 +00:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
|
|
public class FlowerManager {
|
|
|
|
/**
|
|
|
|
* ItemStacks representing simple flower blocks. Meta-sensitive, processed by the basic {@link IFlowerProvider}.
|
|
|
|
*/
|
|
|
|
public static ArrayList<ItemStack> plainFlowers = new ArrayList<ItemStack>();
|
|
|
|
}
|