Newer
Older
GHFX_REFACTOR / LayerChild.cs
wxn on 9 Nov 2016 398 bytes 冗余代码整理
namespace Cyberpipe
{
    public class LayerChild
    {
        public string attriLabel;
        public string attriLayer;
        public string attriType;

        public LayerChild()
        { }
        public LayerChild(string label, string layerName, string type)
        {
            attriLabel = label;
            attriLayer = layerName;
            attriType = type;
        }
    }
}