Files
totem_of_reviving/src/main/java/dev/micle/totemofreviving/ISideProxy.java
2022-01-19 03:46:29 +00:00

14 lines
308 B
Java

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