minecraft-src/net/minecraft/util/profiling/ProfileCollector.java
2025-07-04 01:41:11 +03:00

15 lines
419 B
Java

package net.minecraft.util.profiling;
import java.util.Set;
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
ActiveProfiler.PathEntry getEntry(String entryId);
Set<Pair<String, MetricCategory>> getChartedPaths();
}