Files
BlenderSharp/BlendFile/DNA/NodeFrame.cs

32 lines
924 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(599, "NodeFrame")]
public struct NodeFrame {
[DNAFieldAttribute(0, "short", "flag", 2)]
public short flag;
[DNAFieldAttribute(1, "short", "label_size", 2)]
public short label_size;
public NodeFrame() {
this.flag = default;
this.label_size = default;
}
public NodeFrame(short flag, short label_size) {
this.flag = flag;
this.label_size = label_size;
}
}
}