2019-07-12 23:53:57 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-07-16 23:35:21 +02:00
|
|
|
|
using Toolbox.Library;
|
2019-07-12 23:53:57 +02:00
|
|
|
|
|
|
|
|
|
namespace FirstPlugin
|
|
|
|
|
{
|
|
|
|
|
public class BMDTextureMap : STGenericMatTexture
|
|
|
|
|
{
|
|
|
|
|
BMDMaterialWrapper material;
|
|
|
|
|
public BMDTextureMap(BMDMaterialWrapper mat)
|
|
|
|
|
{
|
|
|
|
|
material = mat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int TextureIndex { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|