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(); }