mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-16 12:02:17 +00:00
32 lines
778 B
Python
32 lines
778 B
Python
import enum as _enum
|
|
|
|
__all__ = ("Region", "Game")
|
|
|
|
|
|
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".
|
|
"""
|
|
|
|
GENSHIN = "genshin"
|
|
HONKAI = "honkai3rd"
|
|
STARRAIL = "hkrpg"
|