mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-17 18:34:23 +01:00
10 lines
301 B
Java
10 lines
301 B
Java
package com.minelittlepony.unicopia.particle;
|
|
|
|
import net.minecraft.particle.ParticleEffect;
|
|
import net.minecraft.util.math.Vec3d;
|
|
|
|
public interface ParticleSpawner {
|
|
ParticleSpawner EMPTY = (effect, pos, vel) -> {};
|
|
|
|
void addParticle(ParticleEffect effect, Vec3d position, Vec3d velocity);
|
|
}
|