GUI: added restriction card icon to permanent (contains all applied restrictions and requirements, #7471)

This commit is contained in:
Oleg Agafonov 2023-12-03 00:01:47 +04:00
parent ebaa92c537
commit eaa510b265
7 changed files with 87 additions and 14 deletions

View file

@ -7,9 +7,9 @@ import java.io.Serializable;
*/
public class CardIconImpl implements CardIcon, Serializable {
private final CardIconType cardIconType;
private final String text;
private final String hint;
private final CardIconType cardIconType; // icon image
private final String text; // drawing text instead over icon (example: x value or level)
private final String hint; // popup text hint on mouse move over icon
// Utility Icons
public static final CardIconImpl FACE_DOWN = new CardIconImpl(CardIconType.OTHER_FACEDOWN, "Card is face down");