mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-26 09:39:49 +08:00
13 lines
287 B
C#
13 lines
287 B
C#
using System;
|
|
using System.Windows;
|
|
|
|
namespace MicaSetup.Design;
|
|
|
|
public sealed class GenericResourceDictionary : ResourceDictionary
|
|
{
|
|
public GenericResourceDictionary()
|
|
{
|
|
Source = new Uri($"pack://application:,,,/MicaSetup;component/Resources/Generic.xaml");
|
|
}
|
|
}
|