blob: eca87cf0d89dda127adb5ceb07605bc5675187f6 [file] [log] [blame] [raw]
package net.glowstone.entity;
import java.util.function.Function;
import org.bukkit.Location;
public abstract class GlowExplosiveTest<T extends GlowExplosive> extends GlowEntityTest<T> {
protected GlowExplosiveTest(
Function<Location, ? extends T> entityCreator) {
super(entityCreator);
}
}