1
0
mirror of synced 2024-11-14 19:17:39 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/Textures/ITextureContainer.cs

16 lines
294 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
public interface ITextureContainer
{
List<STGenericTexture> TextureList { get; set; }
bool DisplayIcons { get; }
}
}