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