mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-06-04 11:05:50 +08:00
地图遮罩功能(把米游社大地图搬到原神内) (#2655)
This commit is contained in:
16
BetterGenshinImpact/Model/MaskMap/MaskMapPointClickArgs.cs
Normal file
16
BetterGenshinImpact/Model/MaskMap/MaskMapPointClickArgs.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user