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
|
|
|
|
|
{
|
|
|
|
|
Dictionary<string, STGenericTexture> Textures { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|