10 lines
256 B
C#
10 lines
256 B
C#
using System.Reflection;
|
|
|
|
namespace Pilz.UI.Symbols;
|
|
public interface IBaseSymbolFactory<TSymbols>
|
|
{
|
|
Assembly GetImageResourceAssembly();
|
|
string GetImageRessourcePath(TSymbols svgImage);
|
|
Stream? GetImageRessourceStream(TSymbols svgImage);
|
|
}
|