Created @Interpolate annotation for Interpolators to know which fields to interpolate (instead of all public fields)

This commit is contained in:
CrushedPixel
2015-07-08 11:43:58 +02:00
parent 64628eaac3
commit 8a973fa3e9
7 changed files with 23 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
package eu.crushedpixel.replaymod.interpolation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Interpolate {
}