ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/particle/LaserItemParticleType.java
2024-03-02 21:23:08 +01:00

16 lines
441 B
Java

package de.ellpeck.actuallyadditions.mod.particle;
import com.mojang.serialization.Codec;
import net.minecraft.core.particles.ParticleType;
public class LaserItemParticleType extends ParticleType<LaserItemParticleData> {
public LaserItemParticleType() {
super(false, LaserItemParticleData.DESERIALIZER);
}
@Override
public Codec<LaserItemParticleData> codec() {
return LaserItemParticleData.CODEC;
}
}