2019-07-12 17:53:57 -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
|
|
|
|
using Toolbox.Library;
|
2019-07-12 17:53:57 -04:00
|
|
|
|
|
|
|
|
|
namespace FirstPlugin
|
|
|
|
|
{
|
|
|
|
|
public class BMDTextureMap : STGenericMatTexture
|
|
|
|
|
{
|
|
|
|
|
BMDMaterialWrapper material;
|
|
|
|
|
public BMDTextureMap(BMDMaterialWrapper mat)
|
|
|
|
|
{
|
|
|
|
|
material = mat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int TextureIndex { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|