2016-07-22 20:23:51 +02:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2016-07-22 20:23:51 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.entity;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
2016-11-19 21:11:17 +01:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2016-07-22 20:23:51 +02:00
|
|
|
import net.minecraftforge.fml.client.registry.RenderingRegistry;
|
|
|
|
import net.minecraftforge.fml.common.registry.EntityRegistry;
|
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
|
|
|
|
public final class InitEntities{
|
|
|
|
|
|
|
|
public static void init(){
|
|
|
|
ModUtil.LOGGER.info("Initializing Entities...");
|
|
|
|
|
2016-11-19 21:11:17 +01:00
|
|
|
EntityRegistry.registerModEntity(new ResourceLocation(ModUtil.MOD_ID, "worm"), EntityWorm.class, ModUtil.MOD_ID+".worm", 0, ActuallyAdditions.instance, 64, 1, false);
|
2016-07-22 20:23:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public static void initClient(){
|
|
|
|
RenderingRegistry.registerEntityRenderingHandler(EntityWorm.class, RenderWorm.FACTORY);
|
|
|
|
}
|
2017-07-07 22:09:56 +02:00
|
|
|
|
2016-07-22 20:23:51 +02:00
|
|
|
}
|