13 lines
248 B
Java
13 lines
248 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();
|
||
|
}
|