Ported 1.16.5-2.0.1 to 1.17.1.

This commit is contained in:
2022-01-19 03:46:29 +00:00
parent 9cd3aca86f
commit a6c7673d8f
73 changed files with 1814 additions and 611 deletions

View File

@ -0,0 +1,13 @@
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();
}