Decompile upstream Explosion Overhaul 0.2.3.0

This commit is contained in:
Gitea Runner
2026-05-04 10:03:58 +00:00
commit a8b3d372d7
212 changed files with 31516 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/*
* 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;
}
}