wabbajack/Wabbajack.Services.OSIntegrated/StubbedGameLocator.cs
2021-10-12 21:59:54 -06:00

36 lines
864 B
C#

using Wabbajack.Downloaders.GameFile;
using Wabbajack.DTOs;
using Wabbajack.Installer;
using Wabbajack.Paths;
using Wabbajack.Paths.IO;
namespace Wabbajack.Services.OSIntegrated
{
public class StubbedGameLocator : IGameLocator
{
private readonly TemporaryPath _location;
private readonly TemporaryFileManager _manager;
public StubbedGameLocator(TemporaryFileManager manager)
{
_manager = manager;
_location = manager.CreateFolder();
}
public AbsolutePath GameLocation(Game game)
{
return _location.Path;
}
public bool IsInstalled(Game game)
{
return true;
}
public bool TryFindLocation(Game game, out AbsolutePath path)
{
path = _location.Path;
return true;
}
}
}