Files
SAE31_2024/TestV2/src/fr/monkhanny/dorfromantik/enums/Fonts.java

16 lines
392 B
Java
Raw Normal View History

package fr.monkhanny.dorfromantik.enums;
public enum Fonts {
TITLE, BUTTON;
public String getFontPath() {
switch (this) {
case TITLE:
return "./ressources/fonts/Contage-Black.ttf";
case BUTTON:
return "./ressources/fonts/Contage-Regular.ttf";
default:
throw new IllegalArgumentException("Unexpected value: " + this);
}
}
}