WIP Image imports and file access

This commit is contained in:
TheXamlGuy
2024-06-28 21:03:56 +01:00
parent b5a2bab691
commit f933afc24f
17 changed files with 192 additions and 40 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace Toolkit.Foundation;
public interface IImageDescriptor
{
public object Image { get; }
public int Width { get; }
public int Height { get; }
}