botw-toolset/Control/MapPin.cs
2021-02-03 18:06:47 -08:00

13 lines
233 B
C#

using System.Windows.Controls;
using System.Windows.Media;
namespace BOTWToolset.Control
{
class MapPin : Image
{
public int X { get; set; }
public int Z { get; set; }
public Color Color;
}
}