Remade Main class and created Proxy interface and implementation.

This commit is contained in:
2025-05-24 04:35:44 +01:00
parent 0ef1b70ecd
commit 7ef84de2b5
3 changed files with 125 additions and 15 deletions

View 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();
}