1
0
mirror of synced 2025-02-08 23:39:36 +01:00

21 lines
426 B
C#
Raw Normal View History

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