using System; using System.Globalization; using System.Windows.Data; namespace Game.Core.GameViews { public class CoordinateConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { return ((int)value) * 40; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotSupportedException(); } } }