symbol proxy

This commit is contained in:
Pilzinsel64
2025-08-21 07:56:29 +02:00
parent dc25063ca1
commit 9a0f645e01
9 changed files with 107 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
using Pilz.UI.Symbols;
namespace Pilz.UI.WinForms.Symbols;
public interface ISymbolProxy
{
Image? GetImage(Size size);
Image? GetImage(SymbolSize size);
}