1
0
mirror of synced 2025-01-27 00:13:41 +01:00

18 lines
399 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
/// <summary>
/// Reprenets a single texture that loads an icon.
/// These will check both on expand, and on root
/// </summary>
public interface ISingleTextureIconLoader
{
STGenericTexture IconTexture { get;}
}
}