16 lines
392 B
Java
16 lines
392 B
Java
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|