/* * Decompiled with CFR 0.152. * * Could not load the following classes: * org.jspecify.annotations.Nullable */ package net.minecraft.world.level.entity; import java.util.UUID; import java.util.function.Consumer; import net.minecraft.util.AbortableIterationConsumer; import net.minecraft.world.level.entity.EntityAccess; import net.minecraft.world.level.entity.EntityTypeTest; import net.minecraft.world.phys.AABB; import org.jspecify.annotations.Nullable; public interface LevelEntityGetter { public @Nullable T get(int var1); public @Nullable T get(UUID var1); public Iterable getAll(); public void get(EntityTypeTest var1, AbortableIterationConsumer var2); public void get(AABB var1, Consumer var2); public void get(EntityTypeTest var1, AABB var2, AbortableIterationConsumer var3); }