mirror of
https://gitea.tendokyu.moe/Hay1tsme/artemis.git
synced 2026-02-06 15:47:33 +08:00
12 lines
242 B
Python
12 lines
242 B
Python
class PokkenConstants():
|
|
GAME_CODE = "SDAK"
|
|
|
|
CONFIG_NAME = "pokken.yaml"
|
|
|
|
VER_POKKEN = 0
|
|
|
|
VERSION_NAMES = ("Pokken Tournament")
|
|
|
|
@classmethod
|
|
def game_ver_to_string(cls, ver: int):
|
|
return cls.VERSION_NAMES[ver] |