2019-07-11 19:38:29 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2019-07-16 17:35:21 -04:00
|
|
|
|
namespace Toolbox.Library
|
2019-07-11 19:38:29 -04:00
|
|
|
|
{
|
|
|
|
|
public interface ITextureContainer
|
|
|
|
|
{
|
2019-11-10 12:36:56 -05:00
|
|
|
|
List<STGenericTexture> TextureList { get; set; }
|
|
|
|
|
|
|
|
|
|
bool DisplayIcons { get; }
|
2019-07-11 19:38:29 -04:00
|
|
|
|
}
|
|
|
|
|
}
|