mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-07 12:21:50 +08:00
17 lines
348 B
C#
17 lines
348 B
C#
using System.Windows;
|
|
|
|
namespace BetterGenshinImpact.Model.MaskMap;
|
|
|
|
public sealed class MaskMapPointClickArgs
|
|
{
|
|
public MaskMapPointClickArgs(MaskMapPoint point, Point anchorPosition)
|
|
{
|
|
Point = point;
|
|
AnchorPosition = anchorPosition;
|
|
}
|
|
|
|
public MaskMapPoint Point { get; }
|
|
|
|
public Point AnchorPosition { get; }
|
|
}
|