/* * 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 { public @Nullable T get(); } public static interface Registration { public void register(DebugSubscription var1, ValueGetter var2); } }