1
0
mirror of synced 2024-11-28 17:30:57 +01:00
Switch-Toolbox/File_Format_Library/FileFormats/BMD/BMDTextureMap.cs
KillzXGaming 7cf2e9c571 Cleanup
2019-07-16 17:45:10 -04:00

21 lines
419 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Toolbox.Library;
namespace FirstPlugin
{
public class BMDTextureMap : STGenericMatTexture
{
BMDMaterialWrapper material;
public BMDTextureMap(BMDMaterialWrapper mat)
{
material = mat;
}
public int TextureIndex { get; set; }
}
}