9 lines
291 B
Java
9 lines
291 B
Java
|
package net.minecraft.client.animation;
|
||
|
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
import org.joml.Vector3f;
|
||
|
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public record Keyframe(float timestamp, Vector3f target, AnimationChannel.Interpolation interpolation) {
|
||
|
}
|