package com.mojang.blaze3d; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import javax.annotation.meta.TypeQualifierDefault; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import org.jetbrains.annotations.NotNull; @NotNull @TypeQualifierDefault({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Environment(EnvType.CLIENT) public @interface MethodsReturnNonnullByDefault { }