mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2026-01-03 12:28:14 -05:00
34 lines
788 B
Python
34 lines
788 B
Python
from enum import Enum
|
|
|
|
class Platform(Enum):
|
|
Unknown = "unknown"
|
|
Gog = "gog"
|
|
Steam = "steam"
|
|
Psn = "psn"
|
|
XBoxOne = "xboxone"
|
|
Generic = "generic"
|
|
Origin = "origin"
|
|
Uplay = "uplay"
|
|
Battlenet = "battlenet"
|
|
|
|
class Feature(Enum):
|
|
ImportInstalledGames = "ImportInstalledGames"
|
|
ImportOwnedGames = "ImportOwnedGames"
|
|
LaunchGame = "LaunchGame"
|
|
InstallGame = "InstallGame"
|
|
UninstallGame = "UninstallGame"
|
|
ImportAchievements = "ImportAchievements"
|
|
ImportGameTime = "ImportGameTime"
|
|
Chat = "Chat"
|
|
ImportUsers = "ImportUsers"
|
|
VerifyGame = "VerifyGame"
|
|
|
|
class LocalGameState(Enum):
|
|
Installed = "Installed"
|
|
Running = "Running"
|
|
|
|
class PresenceState(Enum):
|
|
Online = "online"
|
|
Offline = "offline"
|
|
Away = "away"
|