Files
BlenderSharp/BlendFile/DNA/NodeFrame.cs
2025-02-19 18:48:50 +01:00

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