Files
Applied-Energistics-2/src/main/java/appeng/bootstrap/components/IItemRegistrationComponent.java
T
Sebastian Hartte 80fbb58d4f API compiles
2020-06-27 18:09:44 +02:00

14 lines
377 B
Java

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