started adding navigation
This commit is contained in:
parent
32781b1462
commit
468e0a7246
20 changed files with 844 additions and 31 deletions
|
|
@ -30,6 +30,8 @@ public class SavedSettings
|
|||
public double? WindowWidth { get; set; }
|
||||
public double? WindowHeight { get; set; }
|
||||
public bool Headless { get; set; } = true;
|
||||
public BotMode Mode { get; set; } = BotMode.Trading;
|
||||
public MapType MapType { get; set; } = MapType.TrialOfChaos;
|
||||
}
|
||||
|
||||
public class ConfigStore
|
||||
|
|
|
|||
|
|
@ -68,3 +68,16 @@ public enum PostAction
|
|||
Stash,
|
||||
Salvage
|
||||
}
|
||||
|
||||
public enum BotMode
|
||||
{
|
||||
Trading,
|
||||
Mapping
|
||||
}
|
||||
|
||||
public enum MapType
|
||||
{
|
||||
TrialOfChaos,
|
||||
Temple,
|
||||
Endgame
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue