Interface for classes which can change their color.

This commit is contained in:
WickedJack99
2023-11-01 20:53:48 +01:00
parent 544a3fd9b3
commit 8dd6074827

View File

@@ -0,0 +1,12 @@
/**
* @author Aaron Moser
* @date 31.10.2023
*/
package gui.src.interfaces;
import gui.src.constants.GUIConstants.Theme;
public interface Themeable {
public void setThemeColor(Theme themeColor);
}