32 lines
965 B
C#
32 lines
965 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, 0)]
|
|
public short flag;
|
|
[DNAFieldAttribute(1, "short", "label_size", "short", 2, 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;
|
|
}
|
|
}
|
|
}
|