2019-08-01 23:47:35 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Toolbox.Library
|
|
|
|
|
{
|
2019-08-06 23:35:18 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Reprenets a single texture that loads an icon.
|
|
|
|
|
/// These will check both on expand, and on root
|
|
|
|
|
/// </summary>
|
2019-08-02 01:28:37 +02:00
|
|
|
|
public interface ISingleTextureIconLoader
|
|
|
|
|
{
|
|
|
|
|
STGenericTexture IconTexture { get;}
|
|
|
|
|
}
|
2019-08-01 23:47:35 +02:00
|
|
|
|
}
|