From 16703da27fba335f14ae13290e0d6c7aa65e410e Mon Sep 17 00:00:00 2001 From: Kalakoi Date: Wed, 21 May 2025 14:27:28 -0400 Subject: [PATCH] Added loadable external resources for ironman and hiscores icons. --- osrs-toolbox/Resources/ExternalResources.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 osrs-toolbox/Resources/ExternalResources.cs diff --git a/osrs-toolbox/Resources/ExternalResources.cs b/osrs-toolbox/Resources/ExternalResources.cs new file mode 100644 index 0000000..d31ceac --- /dev/null +++ b/osrs-toolbox/Resources/ExternalResources.cs @@ -0,0 +1,10 @@ +using System.Windows.Media.Imaging; + +namespace osrs_toolbox +{ + public static class ExternalResources + { + public static BitmapImage IronImage = new BitmapImage(new Uri("https://oldschool.runescape.wiki/images/Ironman_chat_badge.png")); + public static BitmapImage MainImage = new BitmapImage(new Uri("https://oldschool.runescape.wiki/images/HiScores_icon.png")); + } +}