Files
Applied-Energistics-2/src/main/java/appeng/bootstrap/components/IEntityRegistrationComponent.java
T
2018-08-30 20:31:27 +02:00

16 lines
371 B
Java

package appeng.bootstrap.components;
import net.minecraftforge.fml.common.registry.EntityEntry;
import net.minecraftforge.registries.IForgeRegistry;
import appeng.bootstrap.IBootstrapComponent;
@FunctionalInterface
public interface IEntityRegistrationComponent extends IBootstrapComponent
{
void entityRegistration( IForgeRegistry<EntityEntry> entityRegistry );
}