diff options
Diffstat (limited to 'libs/basic_games/games/game_monsterhunterwilds.py')
| -rw-r--r-- | libs/basic_games/games/game_monsterhunterwilds.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libs/basic_games/games/game_monsterhunterwilds.py b/libs/basic_games/games/game_monsterhunterwilds.py new file mode 100644 index 0000000..419377c --- /dev/null +++ b/libs/basic_games/games/game_monsterhunterwilds.py @@ -0,0 +1,15 @@ +from ..basic_game import BasicGame + + +class MonsterHunterWildsGame(BasicGame): + Name = "Monster Hunter: Wilds Support Plugin" + Author = "AbyssDragnonModding" + Version = "1.0.0" + + GameName = "Monster Hunter: Wilds" + GameShortName = "monsterhunterwilds" + GameBinary = "MonsterHunterWilds.exe" + GameDataPath = "%GAME_PATH%" + GameSaveExtension = "bin" + GameNexusId = 6993 + GameSteamId = 2246340 |
