Change trailer from blocks to particles.

This commit is contained in:
Paul Reilly
2023-03-27 20:35:16 -05:00
parent 34269bde09
commit 922a2bcc76
6 changed files with 182 additions and 121 deletions

View File

@ -0,0 +1,7 @@
package me.totalfreedom.totalfreedommod.api;
@FunctionalInterface
public interface Interpolator
{
double[] interpolate(double from, double to, int max);
}