ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/particle/LaserItemParticleType.java

16 lines
441 B
Java
Raw Normal View History

2023-01-19 16:27:56 +01:00
package de.ellpeck.actuallyadditions.mod.particle;
import com.mojang.serialization.Codec;
2024-03-02 21:23:08 +01:00
import net.minecraft.core.particles.ParticleType;
2023-01-19 16:27:56 +01:00
public class LaserItemParticleType extends ParticleType<LaserItemParticleData> {
public LaserItemParticleType() {
super(false, LaserItemParticleData.DESERIALIZER);
}
@Override
public Codec<LaserItemParticleData> codec() {
return LaserItemParticleData.CODEC;
}
}