30 lines
648 B
Java
30 lines
648 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;
|
|
|
|
@Target({ElementType.METHOD})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface GameTest {
|
|
int timeoutTicks() default 100;
|
|
|
|
String batch() default "defaultBatch";
|
|
|
|
boolean skyAccess() default false;
|
|
|
|
int rotationSteps() default 0;
|
|
|
|
boolean required() default true;
|
|
|
|
boolean manualOnly() default false;
|
|
|
|
String template() default "";
|
|
|
|
long setupTicks() default 0L;
|
|
|
|
int attempts() default 1;
|
|
|
|
int requiredSuccesses() default 1;
|
|
}
|