Cleaned up TotemOfReviving by moving most setup code to the new SideProxy.

This commit is contained in:
2021-11-21 09:51:33 +00:00
parent 3708d49755
commit 7bf2815657
3 changed files with 142 additions and 43 deletions

View File

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