Code/net/minecraft/util/profiling/ProfileCollector.java

15 lines
423 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.util.profiling;
import java.util.Set;
import javax.annotation.Nullable;
import net.minecraft.util.profiling.metrics.MetricCategory;
import org.apache.commons.lang3.tuple.Pair;
public interface ProfileCollector extends ProfilerFiller {
ProfileResults getResults();
@Nullable
ActiveProfiler.PathEntry getEntry(String p_145955_);
Set<Pair<String, MetricCategory>> getChartedPaths();
}