14 lines
308 B
Java
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();
|
|
}
|