mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-15 04:29:09 +01:00
31 lines
1 KiB
Java
31 lines
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.neoforged.api.distmarker.Dist;
|
|
import net.neoforged.api.distmarker.OnlyIn;
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
}
|