feat(Variables) Added variable service and new game patch

This commit is contained in:
2022-04-18 18:28:56 -04:00
parent 72286f9f7b
commit c0c4e251a0
15 changed files with 86 additions and 10 deletions
+7
View File
@@ -45,6 +45,13 @@ public interface ISearchService
void Hide();
}
public interface IVariableService
{
public Dictionary<string, string> Variables { get; set; }
public Task Load();
public bool IsLoaded();
}
public interface IEconomyComparisonService
{
public List<BuildToCompareModel> BuildsToCompare { get; set; }