Add a dedicated builder dimension
This commit is contained in:
parent
2b09531523
commit
5755389cd0
20 changed files with 358 additions and 302 deletions
|
@ -0,0 +1,13 @@
|
|||
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();
|
||||
}
|
||||
}
|
Reference in a new issue