blob: 25e4465c352b524c18b8db9f3051b6a23ff73f40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package dev.isxander.yacl3.api;
import dev.isxander.yacl3.api.utils.Dimension;
import dev.isxander.yacl3.gui.AbstractWidget;
import dev.isxander.yacl3.gui.YACLScreen;
import net.minecraft.network.chat.Component;
/**
* Provides a widget to control the option.
*/
public interface Controller<T> {
/**
* Gets the dedicated {@link Option} for this controller
*/
Option<T> option();
/**
* Gets the formatted value based on {@link Option#pendingValue()}
*/
Component formatValue();
/**
* Provides a widget to display
*
* @param screen parent screen
*/
AbstractWidget provideWidget(YACLScreen screen, Dimension<Integer> widgetDimension);
}
|