minecraft-src/net/minecraft/commands/execution/TraceCallbacks.java
2025-07-04 01:41:11 +03:00

15 lines
376 B
Java

package net.minecraft.commands.execution;
import net.minecraft.resources.ResourceLocation;
public interface TraceCallbacks extends AutoCloseable {
void onCommand(int depth, String command);
void onReturn(int depth, String command, int returnValue);
void onError(String errorMessage);
void onCall(int depth, ResourceLocation function, int commands);
void close();
}