Removed MouseEvent
This commit is contained in:
parent
ca81b5a720
commit
40af0b9ea8
2 changed files with 5 additions and 8 deletions
|
@ -1,6 +1,8 @@
|
||||||
package org.betterx.bclib.integration.modmenu;
|
package org.betterx.bclib.integration.modmenu;
|
||||||
|
|
||||||
import org.betterx.bclib.client.gui.modmenu.MainScreen;
|
import org.betterx.bclib.client.gui.modmenu.TestScreen;
|
||||||
|
|
||||||
|
import net.minecraft.network.chat.Component;
|
||||||
|
|
||||||
import com.terraformersmc.modmenu.api.ConfigScreenFactory;
|
import com.terraformersmc.modmenu.api.ConfigScreenFactory;
|
||||||
import com.terraformersmc.modmenu.api.ModMenuApi;
|
import com.terraformersmc.modmenu.api.ModMenuApi;
|
||||||
|
@ -26,8 +28,8 @@ public class ModMenuEntryPoint implements ModMenuApi {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ConfigScreenFactory<?> getModConfigScreenFactory() {
|
public ConfigScreenFactory<?> getModConfigScreenFactory() {
|
||||||
//return (parent) -> new TestScreen(Component.literal("Hello Test"));
|
return (parent) -> new TestScreen(Component.literal("Hello Test"));
|
||||||
return (parent) -> new MainScreen(parent);
|
//return (parent) -> new MainScreen(parent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
package org.betterx.ui.layout.components.input;
|
|
||||||
|
|
||||||
public enum MouseEvent {
|
|
||||||
DOWN, UP, MOVE, DRAG, SCROLL
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue