Cleaned up TotemOfReviving by moving most setup code to the new SideProxy.
This commit is contained in:
13
src/main/java/dev/micle/totemofreviving/ISideProxy.java
Normal file
13
src/main/java/dev/micle/totemofreviving/ISideProxy.java
Normal 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();
|
||||
}
|
Reference in New Issue
Block a user