25 lines
627 B
Java
25 lines
627 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* org.jspecify.annotations.Nullable
|
|
*/
|
|
package net.minecraft.util.debug;
|
|
|
|
import net.minecraft.server.level.ServerLevel;
|
|
import net.minecraft.util.debug.DebugSubscription;
|
|
import org.jspecify.annotations.Nullable;
|
|
|
|
public interface DebugValueSource {
|
|
public void registerDebugValues(ServerLevel var1, Registration var2);
|
|
|
|
public static interface ValueGetter<T> {
|
|
public @Nullable T get();
|
|
}
|
|
|
|
public static interface Registration {
|
|
public <T> void register(DebugSubscription<T> var1, ValueGetter<T> var2);
|
|
}
|
|
}
|
|
|