Files
BlenderSharp/BlendFile/DNA/NodeFrame.cs
2025-03-04 18:48:04 +01:00

32 lines
964 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", 4)]
public class NodeFrame {
[DNAFieldAttribute(2, "short", 0, "flag", "short", false, 0)]
public short flag;
[DNAFieldAttribute(2, "short", 1, "label_size", "short", false, 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;
}
}
}