13 lines
237 B
Java
13 lines
237 B
Java
package net.minecraft.util.profiling;
|
|
|
|
import it.unimi.dsi.fastutil.objects.Object2LongMap;
|
|
|
|
public interface ProfilerPathEntry {
|
|
long getDuration();
|
|
|
|
long getMaxDuration();
|
|
|
|
long getCount();
|
|
|
|
Object2LongMap<String> getCounters();
|
|
}
|