started adding navigation

This commit is contained in:
Boki 2026-02-13 10:43:35 -05:00
parent 32781b1462
commit 468e0a7246
20 changed files with 844 additions and 31 deletions

View file

@ -94,6 +94,23 @@ public class BoolToOverlayBrushConverter : IValueConverter
=> throw new NotSupportedException();
}
public class MapRequirementsConverter : IValueConverter
{
public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture)
{
return value switch
{
MapType.TrialOfChaos => "Trial Token x1",
MapType.Temple => "Identity Scroll x20",
MapType.Endgame => "Identity Scroll x20",
_ => "",
};
}
public object? ConvertBack(object? value, Type targetType, object? parameter, CultureInfo culture)
=> throw new NotSupportedException();
}
public class CellBorderConverter : IValueConverter
{
public object? Convert(object? value, Type targetType, object? parameter, CultureInfo culture)