PDF3D/IDTF.Net/ModifierDataDescriptions.cs

20 lines
439 B
C#
Raw Normal View History

2023-04-25 15:48:55 +08:00
using System.Collections.Generic;
2023-04-24 16:20:24 +08:00
2023-04-25 15:48:55 +08:00
namespace IDTF.Net
2023-04-24 16:20:24 +08:00
{
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; }
}
}
}