blob: 6eeefa2696909a16132329a50f1656cdadefb1c4 (
plain)
1
2
3
4
5
6
7
8
9
|
package gtPlusPlus.xmod.forestry.bees.alveary;
import forestry.api.apiculture.IBeeHousing;
import gtPlusPlus.xmod.forestry.bees.alveary.gui.InventoryFrameHousing;
public interface IAlvearyFrameHousing extends IBeeHousing {
InventoryFrameHousing getAlvearyInventory();
void wearOutFrames(IBeeHousing beeHousing, int amount);
}
|