1
0
mirror of synced 2025-01-27 16:33:46 +01:00

16 lines
294 B
C#
Raw Normal View History

2019-07-11 19:38:29 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
2019-07-11 19:38:29 -04:00
{
public interface ITextureContainer
{
List<STGenericTexture> TextureList { get; set; }
bool DisplayIcons { get; }
2019-07-11 19:38:29 -04:00
}
}