mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-09 13:56:04 +01:00
11 lines
278 B
Java
11 lines
278 B
Java
|
package com.jozufozu.flywheel.backend;
|
||
|
|
||
|
import net.minecraft.util.ResourceLocation;
|
||
|
|
||
|
public class ResourceUtil {
|
||
|
|
||
|
public static ResourceLocation subPath(ResourceLocation root, String subPath) {
|
||
|
return new ResourceLocation(root.getNamespace(), root.getPath() + subPath);
|
||
|
}
|
||
|
}
|