wabbajack/Wabbajack.Downloaders.GameFile/IGameLocator.cs
2021-10-12 21:59:54 -06:00

12 lines
304 B
C#

using Wabbajack.DTOs;
using Wabbajack.Paths;
namespace Wabbajack.Downloaders.GameFile
{
public interface IGameLocator
{
public AbsolutePath GameLocation(Game game);
public bool IsInstalled(Game game);
public bool TryFindLocation(Game game, out AbsolutePath path);
}
}