9659f7a7d1
Made-with: Cursor
15 lines
395 B
C#
15 lines
395 B
C#
using System.Numerics;
|
|
using FFXIVClientStructs.FFXIV.Client.UI.Agent;
|
|
|
|
namespace Mappy.Extensions;
|
|
|
|
public static class MiniMapGatheringMarkerExtensions
|
|
{
|
|
public static void Draw(this MiniMapGatheringMarker marker, Vector2 offset, float scale)
|
|
{
|
|
if (marker.ShouldRender is 0) return;
|
|
|
|
marker.MapMarker.Scale = 50;
|
|
marker.MapMarker.Draw(offset, scale);
|
|
}
|
|
} |