All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.command.builder.arguments.relative.ArgumentRelativeBlockPosition Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.command.builder.arguments.relative;

import org.jetbrains.annotations.NotNull;

import java.util.function.Function;

/**
 * Represents a block position with 3 integers (x;y;z) which can take relative coordinates.
 * 

* Example: 5 ~ -3 */ public class ArgumentRelativeBlockPosition extends ArgumentRelativeVec { public ArgumentRelativeBlockPosition(@NotNull String id) { super(id, 3); } @Override public String parser() { return "minecraft:block_pos"; } @Override public String toString() { return String.format("RelativeBlockPosition<%s>", getId()); } @Override Function getRelativeNumberParser() { return Double::parseDouble; } @Override Function getAbsoluteNumberParser() { return Integer::parseInt; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy