mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-15 12:39:10 +01:00
32 lines
1.1 KiB
Java
32 lines
1.1 KiB
Java
/*
|
|
* This file ("InitEntities.java") is part of the Actually Additions mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2017 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.entity;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
|
import net.minecraft.util.ResourceLocation;
|
|
import net.minecraftforge.fml.client.registry.RenderingRegistry;
|
|
import net.minecraftforge.fml.common.registry.EntityRegistry;
|
|
|
|
|
|
public final class InitEntities {
|
|
|
|
public static void init() {
|
|
ActuallyAdditions.LOGGER.info("Initializing Entities...");
|
|
|
|
EntityRegistry.registerModEntity(new ResourceLocation(ActuallyAdditions.MODID, "worm"), EntityWorm.class, ActuallyAdditions.MODID + ".worm", 0, ActuallyAdditions.INSTANCE, 64, 1, false);
|
|
}
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
public static void initClient() {
|
|
RenderingRegistry.registerEntityRenderingHandler(EntityWorm.class, RenderWorm::new);
|
|
}
|
|
|
|
}
|