14 lines
289 B
Java
14 lines
289 B
Java
package dev.micle.totemofreviving;
|
|
|
|
import net.minecraft.server.MinecraftServer;
|
|
import net.minecraft.world.entity.player.Player;
|
|
import net.minecraft.world.level.Level;
|
|
|
|
public interface ISideProxy {
|
|
MinecraftServer getServer();
|
|
|
|
Player getClientPlayer();
|
|
|
|
Level getClientWorld();
|
|
}
|