Total Complexity | 0 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | #!/usr/bin/python |
||
2 | # -*- coding: utf-8 -*- |
||
3 | |||
4 | |||
5 | 1 | class CommonSteamGames: |
|
6 | 1 | APP_ID_TF2 = 440 |
|
7 | 1 | APP_ID_DOTA = 570 |
|
8 | 1 | APP_ID_CSGO = 730 |
|
9 | |||
10 | |||
11 | 1 | class ContextIds: |
|
12 | # H1Z1,... |
||
13 | 1 | STEAM_COOPERATION_GAMES = 1 |
|
14 | # CsGo, Dota, TF2,... |
||
15 | 1 | VALVE_GAMES = 2 |
|
16 | # general items |
||
17 | STEAM_COMMUNITY_ITEMS = 6 |
||
18 |