Files
VisualSapfor/src/Common_old/UI/Themes/ThemeElement.java

9 lines
157 B
Java

package Common_old.UI.Themes;
public interface ThemeElement {
default void FontUp() {
}
default void FontDown() {
}
void applyTheme();
}