1
0
mirror of synced 2025-02-12 17:14:28 +01:00
2019-08-01 19:28:37 -04:00

23 lines
608 B
C#

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;}
}
}