1
0
mirror of synced 2024-12-04 11:58:03 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/ITextureContainer.cs
2019-07-11 19:38:29 -04:00

14 lines
276 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Switch_Toolbox.Library
{
public interface ITextureContainer
{
Dictionary<string, STGenericTexture> Textures { get; set; }
}
}