Files
VisualSapfor/src/Common/UI/Themes/ThemeElement.java
2023-09-17 22:13:42 +03:00

9 lines
153 B
Java

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