![JAR search and dependency download from the Maven repository](/logo.png)
net.minestom.server.entity.damage.PositionalDamage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.entity.damage;
import net.minestom.server.coordinate.Point;
import net.minestom.server.registry.DynamicRegistry;
import org.jetbrains.annotations.NotNull;
/**
* Represents damage that is associated with a certain position.
*/
public class PositionalDamage extends Damage {
public PositionalDamage(@NotNull DynamicRegistry.Key type, @NotNull Point sourcePosition, float amount) {
super(type, null, null, sourcePosition, amount);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy