1
0
mirror of synced 2025-02-14 18:12:33 +01:00

23 lines
608 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
//A texture list to display icons on a treeview
//Note these will load and attach an icon when the parent treenode is expanded!
public interface ITextureIconLoader
{
List<STGenericTexture> IconTextureList { get; set; }
}
//Reprenets a single texture that loads an icon.
//These will check both on expand, and on root
public interface ISingleTextureIconLoader
{
STGenericTexture IconTexture { get;}
}
}