1
0
mirror of synced 2024-12-03 03:27:23 +01:00
Switch-Toolbox/File_Format_Library/FileFormats/Layout/LayoutTextureLoader.cs

30 lines
866 B
C#
Raw Normal View History

2019-09-05 22:24:03 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FirstPlugin;
using Toolbox.Library;
namespace LayoutBXLYT
{
public class LayoutTextureLoader
{
public static List<BNTX> SwitchTextures = new List<BNTX>();
public static Dictionary<string, STGenericTexture> Textures = new Dictionary<string, STGenericTexture>();
public static List<string> SearchFolderPaths = new List<string>();
/* public static Dictionary<string, STGenericTexture> GetTextures(List<string> textureList, IArchiveFile archive = null)
{
var textures = new Dictionary<string, STGenericTexture>();
if (archive != null)
{
foreach (var file in archive.Files)
{
}
}
}*/
}
}