rpcs3-www/website/constants.py
Alexandro Sánchez Bach e4d8857870 App 'compat' created
2014-06-16 01:20:00 +02:00

18 lines
511 B
Python

# Contants shared between all apps
class C:
COMPATIBILITY_UNKNOWN = 0
COMPATIBILITY_NOTHING = 1
COMPATIBILITY_INTRO = 2
COMPATIBILITY_INGAME = 3
COMPATIBILITY_PLAYABLE = 4
COMPATIBILITY_PERFECT = 5
COMPATIBILITY = (
(COMPATIBILITY_UNKNOWN, "Unknown"),
(COMPATIBILITY_NOTHING, "Nothing"),
(COMPATIBILITY_INTRO, "Intro"),
(COMPATIBILITY_INGAME, "Ingame"),
(COMPATIBILITY_PLAYABLE, "Playable"),
(COMPATIBILITY_PERFECT, "Perfect"),
)