blob: c531983378d1283d2509830661f8f79075e752ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package shcm.shsupercm.fabric.citresewn.pack;
import net.minecraft.util.Identifier;
import shcm.shsupercm.fabric.citresewn.mixin.core.ModelLoaderMixin;
/**
* Marks models as cit item models.
* @see ModelLoaderMixin
*/
public class ResewnItemModelIdentifier extends Identifier {
public ResewnItemModelIdentifier(String id) {
super(id);
}
public ResewnItemModelIdentifier(Identifier identifier) {
super(identifier.getNamespace(), identifier.getPath());
}
}
|