地图遮罩功能(把米游社大地图搬到原神内) (#2655)

This commit is contained in:
辉鸭蛋
2026-01-26 02:58:23 +08:00
committed by GitHub
parent 3d6a24d11c
commit 62481baba9
68 changed files with 5747 additions and 132 deletions

View File

@@ -0,0 +1,16 @@
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; }
}