1
0
mirror of synced 2025-03-03 16:45:09 +01:00

14 lines
276 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 Switch_Toolbox.Library
{
public interface ITextureContainer
{
Dictionary<string, STGenericTexture> Textures { get; set; }
}
}