first commit

This commit is contained in:
2026-07-05 19:22:04 +02:00
commit dd4187abea
67 changed files with 304 additions and 0 deletions
@@ -0,0 +1,11 @@
package de.fullrisk.citrusDev;
import io.wispforest.owo.ui.core.Animatable;
import net.minecraft.util.Mth;
public record ScaleValue(float value) implements Animatable<ScaleValue> {
@Override
public ScaleValue interpolate(ScaleValue next, float delta) {
return new ScaleValue(Mth.lerp(delta, this.value, next.value));
}
}