2018-12-14 00:47:01 +01:00
|
|
|
package de.ellpeck.naturesaura.entities;
|
|
|
|
|
2021-12-06 14:38:12 +01:00
|
|
|
import net.minecraft.world.entity.EntityType;
|
2018-12-14 00:47:01 +01:00
|
|
|
|
2023-02-15 23:45:50 +01:00
|
|
|
@SuppressWarnings("NonConstantFieldWithUpperCaseName")
|
2018-12-14 00:47:01 +01:00
|
|
|
public final class ModEntities {
|
2021-12-06 14:38:12 +01:00
|
|
|
|
2020-01-23 19:20:47 +01:00
|
|
|
public static EntityType<EntityMoverMinecart> MOVER_CART;
|
2020-01-21 23:54:01 +01:00
|
|
|
public static EntityType<EntityEffectInhibitor> EFFECT_INHIBITOR;
|
2020-04-27 18:30:44 +02:00
|
|
|
public static EntityType<EntityLightProjectile> LIGHT_PROJECTILE;
|
2020-05-20 14:55:59 +02:00
|
|
|
public static EntityType<EntityStructureFinder> STRUCTURE_FINDER;
|
2018-12-14 00:47:01 +01:00
|
|
|
}
|