21 lines
409 B
Java
21 lines
409 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* it.unimi.dsi.fastutil.objects.Object2LongMap
|
|
*/
|
|
package net.minecraft.util.profiling;
|
|
|
|
import it.unimi.dsi.fastutil.objects.Object2LongMap;
|
|
|
|
public interface ProfilerPathEntry {
|
|
public long getDuration();
|
|
|
|
public long getMaxDuration();
|
|
|
|
public long getCount();
|
|
|
|
public Object2LongMap<String> getCounters();
|
|
}
|
|
|