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

9 lines
153 B
Java
Raw Normal View History

2023-09-17 22:13:42 +03:00
package Common.UI.Themes;
public interface ThemeElement {
default void FontUp() {
}
default void FontDown() {
}
void applyTheme();
}