generated from MrSphay/codex-agent-repository-kit
16 lines
278 B
Java
16 lines
278 B
Java
package com.vinlanx.explosionoverhaul.client;
|
|
|
|
import net.minecraft.world.phys.Vec3;
|
|
|
|
public class GroundDustEffect {
|
|
public GroundDustEffect(Vec3 position, float power) {
|
|
}
|
|
|
|
public void tick() {
|
|
}
|
|
|
|
public boolean isFinished() {
|
|
return true;
|
|
}
|
|
}
|