package net.minecraft.util.profiling; import java.util.Set; import net.minecraft.util.profiling.ActiveProfiler.PathEntry; import net.minecraft.util.profiling.metrics.MetricCategory; import org.apache.commons.lang3.tuple.Pair; import org.jetbrains.annotations.Nullable; public interface ProfileCollector extends ProfilerFiller { ProfileResults getResults(); @Nullable PathEntry getEntry(String entryId); Set> getChartedPaths(); }