package dev.micle.totemofreviving; import net.minecraft.client.multiplayer.ClientLevel; import net.minecraft.server.MinecraftServer; import net.minecraft.world.entity.player.Player; public interface ISideProxy { MinecraftServer getServer(); Player getClientPlayer(); ClientLevel getClientWorld(); }