Add donate links to title bar

This commit is contained in:
Asriel Camora
2024-11-28 14:05:29 -08:00
parent 127fa43757
commit 8451572a79
7 changed files with 30 additions and 2 deletions
+6
View File
@@ -103,6 +103,12 @@ public sealed unsafe class RecipeNote : Window, IDisposable
IconOffset = new(2, 1),
Click = _ => Service.Plugin.OpenSettingsTab("Crafting Log"),
ShowTooltip = () => ImGuiUtils.Tooltip("Open Settings")
},
new() {
Icon = FontAwesomeIcon.Heart,
IconOffset = new(2, 1),
Click = _ => Util.OpenLink(Plugin.Plugin.SupportLink),
ShowTooltip = () => ImGuiUtils.Tooltip("Support me on Ko-fi!")
}
];