13 lines
355 B
Java
13 lines
355 B
Java
package space.eptaproject.vmodaddon.mixin;
|
|
|
|
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.TYPE)
|
|
public @interface Transformers {
|
|
Class<? extends ITransformer>[] transformers();
|
|
}
|