blob: 1baae94f5e6524551d4607daa99099dd6f21c8ef [file] [log] [blame] [raw]
package com.legacy.aether.api;
import net.minecraft.util.ResourceLocation;
public class RegistryEntry {
private ResourceLocation location;
public RegistryEntry setRegistryName(String modid, String location) {
this.location = new ResourceLocation(modid, location);
return this;
}
public RegistryEntry setRegistryName(String location) {
this.location = new ResourceLocation(location);
return this;
}
public RegistryEntry setRegistryName(ResourceLocation location) {
this.location = location;
return this;
}
public ResourceLocation getRegistryName() {
return this.location;
}
}