skyeweave/atlasimagecomposer/config/config.py
Firq 0377c6282a
Some checks failed
/ mypy (push) Failing after 19s
/ pylint (push) Successful in 15s
/ release (push) Successful in 6s
/ lint-and-typing (push) Failing after 19s
/ build-artifacts (push) Has been skipped
/ publish-artifacts (push) Has been skipped
Rewrote with charaIds, fixed big sprites
2024-10-11 01:04:05 +02:00

18 lines
413 B
Python

# pylint: disable=too-few-public-methods
import pathlib
class Paths:
_root = pathlib.Path(__file__).parents[1]
IMAGES = _root / ".temp"
OUTPUT = _root / ".out"
class ExpressionDefaults:
FACESIZE = 256
SHEETSIZE = 1024
class AtlasDefaults:
REGION = "JP"
TIMEOUT = 10
MST_SVT_JSON = "https://git.atlasacademy.io/atlasacademy/fgo-game-data/raw/branch/JP/master/mstSvtScript.json"