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;
|
2024-03-04 20:21:48 +01:00
|
|
|
import net.neoforged.api.distmarker.Dist;
|
|
|
|
import net.neoforged.api.distmarker.OnlyIn;
|
2021-03-01 18:11:34 +01:00
|
|
|
|
2016-07-22 20:23:51 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public final class InitEntities {
|
2016-07-22 20:23:51 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public static void init() {
|
2018-05-10 11:38:58 +02:00
|
|
|
ActuallyAdditions.LOGGER.info("Initializing Entities...");
|
2016-07-22 20:23:51 +02:00
|
|
|
|
2021-11-13 18:02:42 +01:00
|
|
|
//EntityRegistry.registerModEntity(new ResourceLocation(ActuallyAdditions.MODID, "worm"), EntityWorm.class, ActuallyAdditions.MODID + ".worm", 0, ActuallyAdditions.INSTANCE, 64, 1, false);
|
2016-07-22 20:23:51 +02:00
|
|
|
}
|
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
2019-05-02 09:10:29 +02:00
|
|
|
public static void initClient() {
|
2021-11-13 18:02:42 +01:00
|
|
|
//RenderingRegistry.registerEntityRenderingHandler(EntityWorm.class, RenderWorm::new);
|
2016-07-22 20:23:51 +02:00
|
|
|
}
|
2019-02-27 19:53:05 +01:00
|
|
|
|
2016-07-22 20:23:51 +02:00
|
|
|
}
|