Files
totem_of_reviving/src/main/java/dev/micle/totemofreviving/ISideProxy.java

14 lines
308 B
Java

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