Some small UI adjustment to the level UP screen & RollOverlay.

This commit is contained in:
Thomas Andres Gomez 2025-03-14 15:07:48 +01:00
parent fce085f70d
commit 35396b6069
23 changed files with 530 additions and 166 deletions

View file

@ -14,6 +14,16 @@ class PathProvider(
}
}
fun imagesStorePath(
os: OperatingSystem = this.operatingSystem,
app: String = this.appName,
): String {
return when (os) {
OperatingSystem.Windows -> "${storePath(os = os, app = app)}_images\\"
OperatingSystem.Macintosh -> "${storePath(os = os, app = app)}_images/"
}
}
fun characterStorePath(
os: OperatingSystem = this.operatingSystem,
app: String = this.appName,