wabbajack/Wabbajack.Installer/IGameLocator.cs
2021-09-27 06:42:46 -06:00

12 lines
293 B
C#

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