Files
BlenderSharp/BlendFile/DNA/WorkSpaceDataRelation.cs
2025-03-11 19:12:04 +01:00

48 lines
1.8 KiB
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(1070, "WorkSpaceDataRelation", 40)]
public class WorkSpaceDataRelation {
[DNAFieldAttribute(8, "WorkSpaceDataRelation", 0, "*next", "WorkSpaceDataRelation", true, 0)]
public WorkSpaceDataRelation next;
[DNAFieldAttribute(8, "WorkSpaceDataRelation", 1, "*prev", "WorkSpaceDataRelation", true, 8)]
public WorkSpaceDataRelation prev;
[DNAFieldAttribute(8, "void", 2, "*parent", "void", true, 16)]
public object parent;
[DNAFieldAttribute(8, "void", 3, "*value", "void", true, 24)]
public object value;
[DNAFieldAttribute(4, "int", 4, "parentid", "int", false, 32)]
public int parentid;
[DNAArrayAttribute(4, "char", 5, "_pad_0[4]", "System.Char[]", 4, 36)]
public char[] _pad_0 = new System.Char[4];
public WorkSpaceDataRelation() {
this.next = default;
this.prev = default;
this.parent = default;
this.value = default;
this.parentid = default;
this._pad_0 = default;
}
public WorkSpaceDataRelation(WorkSpaceDataRelation next, WorkSpaceDataRelation prev, object parent, object value, int parentid, char[] _pad_0) {
this.next = next;
this.prev = prev;
this.parent = parent;
this.value = value;
this.parentid = parentid;
this._pad_0 = _pad_0;
}
}
}