SIMNet/simnet/utils/enums.py

34 lines
855 B
Python
Raw Permalink Normal View History

2023-05-01 09:30:57 +00:00
import enum as _enum
__all__ = ("Region", "Game")
2023-05-01 09:30:57 +00:00
class Region(str, _enum.Enum):
"""
Represents a region where a game is being played.
Attributes:
OVERSEAS (Region): Represents an overseas region where a game is being played.
CHINESE (Region): Represents a Chinese region where a game is being played.
"""
OVERSEAS = "os"
CHINESE = "cn"
class Game(str, _enum.Enum):
"""
Represents a game that can be played in different regions.
Attributes:
GENSHIN (Game): Represents the game "Genshin Impact".
HONKAI (Game): Represents the game "Honkai Impact 3rd".
STARRAIL (Game): Represents the game "Honkai Impact 3rd RPG".
2024-07-05 13:58:00 +00:00
ZZZ (Game): Represents the game "Zenless Zone Zero".
2023-05-01 09:30:57 +00:00
"""
GENSHIN = "genshin"
HONKAI = "honkai3rd"
STARRAIL = "hkrpg"
2024-07-05 13:58:00 +00:00
ZZZ = "nap"