wabbajack/Wabbajack.Downloaders.GameFile/IGameLocator.cs

11 lines
278 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using Wabbajack.DTOs;
using Wabbajack.Paths;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Downloaders.GameFile;
public interface IGameLocator
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
public AbsolutePath GameLocation(Game game);
public bool IsInstalled(Game game);
public bool TryFindLocation(Game game, out AbsolutePath path);
2021-09-27 12:42:46 +00:00
}