This commit is contained in:
Auric Vente
2024-07-22 23:26:11 -06:00
parent 61403f0419
commit 8b96769a6b
3 changed files with 12 additions and 7 deletions

View File

@@ -6,8 +6,9 @@ import appdirs # type: ignore
class Config:
title: str = "Cromulant"
program: str = "cromulant"
program: str
title: str
version: str
width: int = 820
height: int = 900
here: Path
@@ -93,3 +94,6 @@ class Config:
Config.logo_path = Config.here / "img" / "logo_3.jpg"
Config.manifest = Storage.get_manifest()
Config.title = Config.manifest["title"]
Config.program = Config.manifest["program"]
Config.version = Config.manifest["version"]