forked from Hay1tsme/artemis
Dniel97
2af7751504
Co-authored-by: Dniel97 <Dniel97@noreply.gitea.tendokyu.moe> Reviewed-on: Hay1tsme/artemis#14 Co-authored-by: Dniel97 <dniel97@noreply.gitea.tendokyu.moe> Co-committed-by: Dniel97 <dniel97@noreply.gitea.tendokyu.moe>
14 lines
295 B
Python
14 lines
295 B
Python
class CardMakerConstants:
|
|
GAME_CODE = "SDED"
|
|
|
|
CONFIG_NAME = "cardmaker.yaml"
|
|
|
|
VER_CARD_MAKER = 0
|
|
VER_CARD_MAKER_135 = 1
|
|
|
|
VERSION_NAMES = ("Card Maker 1.34", "Card Maker 1.35")
|
|
|
|
@classmethod
|
|
def game_ver_to_string(cls, ver: int):
|
|
return cls.VERSION_NAMES[ver]
|