Files
xp_tools/src/main/java/dev/micle/xptools/proxy/IProxy.java

12 lines
288 B
Java

package dev.micle.xptools.proxy;
import net.minecraft.server.MinecraftServer;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.Level;
public interface IProxy {
MinecraftServer getServer();
Player getClientPlayer();
Level getClientLevel();
}