Newer
Older
GHFX_REFACTOR / PipelineType.cs
wxn on 9 Nov 2016 371 bytes 冗余代码整理
namespace Cyberpipe
{
    public class PipelineType
    {
        public string code = "";
        public string name = "";
        public string type = "";

        public PipelineType() { }
        public PipelineType(string _code, string _name, string _type)
        {
            code = _code;
            name = _name;
            type = _type;
        }
    }
}