/******************************************************************************* * Copyright 2011-2014 SirSengir * * This work (the API) is licensed under the "MIT" License, see LICENSE.txt for details. ******************************************************************************/ package forestry.api.lepidopterology; import forestry.api.genetics.IHousing; import forestry.api.genetics.IIndividual; public interface IButterflyNursery extends IHousing { IButterfly getCaterpillar(); IIndividual getNanny(); void setCaterpillar(IButterfly butterfly); boolean canNurse(IButterfly butterfly); }