This repository has been archived on 2024-07-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Thresholds/src/main/java/dev/zontreck/otemod/registry/ModDimensions.java

13 lines
370 B
Java

package dev.zontreck.otemod.registry;
import dev.zontreck.otemod.OTEMod;
import net.minecraft.resources.ResourceLocation;
public class ModDimensions
{
public static final ResourceLocation BUILDER = new ResourceLocation(OTEMod.MOD_ID, "builder");
public static String BUILDER_DIM()
{
return BUILDER.getNamespace() + ":" + BUILDER.getPath();
}
}