PDF3D/IDTF.Net/ModifierDataDescriptions.cs
2023-04-25 15:48:55 +08:00

20 lines
439 B
C#

using System.Collections.Generic;
namespace IDTF.Net
{
public class Shader
{
private List<string> _shaderNameList;
public List<string> ShaderNameList
{
get
{
if (this._shaderNameList == null) this._shaderNameList = new List<string>();
return this._shaderNameList;
}
set { this._shaderNameList = value; }
}
}
}