eagler-1-12-4 / src /game /java /net /minecraft /commands /arguments /TemplateRotationArgument.java
soiz1's picture
Upload folder using huggingface_hub
d46f4a3 verified
package net.minecraft.commands.arguments;
import com.mojang.brigadier.context.CommandContext;
import net.minecraft.commands.CommandSourceStack;
import net.minecraft.world.level.block.Rotation;
public class TemplateRotationArgument extends StringRepresentableArgument<Rotation> {
private TemplateRotationArgument() {
super(Rotation.CODEC, Rotation::values);
}
public static TemplateRotationArgument templateRotation() {
return new TemplateRotationArgument();
}
public static Rotation getRotation(CommandContext<CommandSourceStack> p_234416_, String p_234417_) {
return p_234416_.getArgument(p_234417_, Rotation.class);
}
}