Files
Explosion-Overhaul/com/vinlanx/explosionoverhaul/VinlanxTheLightModel.java
2026-05-04 10:03:58 +00:00

29 lines
1.1 KiB
Java

/*
* Decompiled with CFR 0.152.
*/
package com.vinlanx.explosionoverhaul;
import net.minecraft.resources.ResourceLocation;
import software.bernie.geckolib.core.animatable.GeoAnimatable;
import software.bernie.geckolib.model.GeoModel;
public class VinlanxTheLightModel<T extends GeoAnimatable>
extends GeoModel<T> {
private static final ResourceLocation MODEL = ResourceLocation.fromNamespaceAndPath((String)"explosionoverhaul", (String)"geo/vinlanxthelight.geo.json");
private static final ResourceLocation TEXTURE = ResourceLocation.fromNamespaceAndPath((String)"explosionoverhaul", (String)"textures/block/vinlanxthelight.png");
private static final ResourceLocation ANIMATION = ResourceLocation.fromNamespaceAndPath((String)"explosionoverhaul", (String)"animations/vinlanxthelight.animation.json");
public ResourceLocation getModelResource(T animatable) {
return MODEL;
}
public ResourceLocation getTextureResource(T animatable) {
return TEXTURE;
}
public ResourceLocation getAnimationResource(T animatable) {
return ANIMATION;
}
}