Remade Main class and created Proxy interface and implementation.
This commit is contained in:
11
src/main/java/dev/micle/xptools/proxy/IProxy.java
Normal file
11
src/main/java/dev/micle/xptools/proxy/IProxy.java
Normal file
@ -0,0 +1,11 @@
|
||||
package dev.micle.xptools.proxy;
|
||||
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import net.minecraft.world.entity.player.Player;
|
||||
import net.minecraft.world.level.Level;
|
||||
|
||||
public interface IProxy {
|
||||
MinecraftServer getServer();
|
||||
Player getClientPlayer();
|
||||
Level getClientLevel();
|
||||
}
|
Reference in New Issue
Block a user