mirror of
https://github.com/chev2/botw-toolset.git
synced 2026-02-16 03:06:05 +00:00
13 lines
233 B
C#
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;
|
|
}
|
|
}
|