Color bug fixes

This commit is contained in:
UnlegitDqrk
2026-02-08 15:57:43 +01:00
parent 61fa2d5f38
commit fd1e9129eb
8 changed files with 150 additions and 93 deletions

View File

@@ -6,7 +6,12 @@ import java.awt.*;
public interface OACPressable extends OACComponent {
Color getPressColor();
Color getPressedColor();
void setPressedColor(Color color);
void setPressColor(Color color);
Color getHoveredColor();
void setHoveredColor(Color color);
Color getDisabledColor();
void setDisabledColor(Color color);
}