Files
Applied-Energistics-2/src/main/java/appeng/bootstrap/components/IItemRegistrationComponent.java
T
2020-06-16 21:45:35 +02:00

14 lines
388 B
Java

package appeng.bootstrap.components;
import net.minecraft.item.Item;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.registries.IForgeRegistry;
import appeng.bootstrap.IBootstrapComponent;
@FunctionalInterface
public interface IItemRegistrationComponent extends IBootstrapComponent {
void itemRegistration(Dist dist, IForgeRegistry<Item> itemRegistry);
}