minecraft-src/net/minecraft/gametest/framework/AfterBatch.java
2025-07-04 01:41:11 +03:00

15 lines
433 B
Java

package net.minecraft.gametest.framework;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotate a method with this annotation in order to have it run after the specified {@link #batch()}.
*/
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface AfterBatch {
String batch();
}