32 lines
977 B
C#
32 lines
977 B
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(1031, "IDViewerPathElem", 40)]
|
|
public class IDViewerPathElem {
|
|
[DNAFieldAttribute(32, "ViewerPathElem", 0, "base", "ViewerPathElem", false, 0)]
|
|
public ViewerPathElem @base;
|
|
[DNAFieldAttribute(8, "ID", 1, "*id", "ID", true, 32)]
|
|
public ID id;
|
|
public IDViewerPathElem() {
|
|
this.@base = default;
|
|
this.id = default;
|
|
}
|
|
public IDViewerPathElem(ViewerPathElem @base, ID id) {
|
|
this.@base = @base;
|
|
this.id = id;
|
|
}
|
|
}
|
|
}
|