Initial HSMappy release (fork of Mappy)

Made-with: Cursor
This commit is contained in:
2026-02-26 03:54:51 -05:00
commit 9659f7a7d1
72 changed files with 6625 additions and 0 deletions
@@ -0,0 +1,15 @@
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);
}
}