2024-10-28 21:47:51 +00:00
|
|
|
package jesse.keeblarcraft.gui;
|
|
|
|
|
|
|
|
import jesse.keeblarcraft.Keeblarcraft;
|
2024-12-21 07:07:14 +00:00
|
|
|
import jesse.keeblarcraft.GuiMgr.ScreenHandlerRegistration;
|
2024-10-28 21:47:51 +00:00
|
|
|
import net.minecraft.client.gui.screen.ingame.HandledScreens;
|
|
|
|
|
|
|
|
public class ClientHandlers {
|
|
|
|
public static void RegisterHandlers() {
|
|
|
|
System.out.println("Registering tree handler screen");
|
2024-12-21 07:07:14 +00:00
|
|
|
// HandledScreens.register(Keeblarcraft.TREE_HANDLER, ScreenManager::new);
|
|
|
|
HandledScreens.register(ScreenHandlerRegistration.FACTION_BLOCK_SCREEN_HANDLER, FactionBlockScreen::new);
|
2024-10-28 21:47:51 +00:00
|
|
|
}
|
|
|
|
}
|