Files
minecraft-modpack-updater/ModpackUpdater.Apps/AppSymbolFactory.cs
2025-06-17 09:40:10 +02:00

18 lines
418 B
C#

using Pilz.UI.Gtk.Symbols;
using System.Reflection;
namespace ModpackUpdater.Apps;
internal class AppSymbolFactory : GtkSymbolFactory<AppSymbols>
{
public override Assembly GetImageResourceAssembly()
{
return Assembly.GetExecutingAssembly();
}
public override string GetImageRessourcePath(AppSymbols svgImage)
{
return $"{GetType().Namespace}.Symbols.{svgImage}.svg";
}
}