CutFlame / MCDSaveEdit

Minecraft: Dungeons Save File Editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Locate GamePak Steam version using GameFinder?

ray1997 opened this issue · comments

As this game is on Steam and it might help a little bit on automatically locate game Steam verison.

Here's a library: https://github.com/erri120/GameFinder
And here's Minecraft Dungeon Steam info: https://steamdb.info/app/1672970/

public string GetMCDSteam()
{
    var handler = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
    ? new SteamHandler(new WindowsRegistry())
    : new SteamHandler(null);
    SteamGame? game = handler.FindOneGameById(1672970, out string[] errors);
    return game.Path;
}