Files
BlenderSharp/BlendFile/DNA/bNodeSocket.cs
Samuele Lorefice 439cea385f Regenerated files
2025-01-22 18:11:19 +01:00

98 lines
3.6 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 {
public class bNodeSocket {
public bNodeSocket ptr_next;
public bNodeSocket ptr_prev;
public IDProperty ptr_prop;
public char[] identifier = new System.Char[64];
public char[] name = new System.Char[64];
public object ptr_storage;
public short type;
public short flag;
public short limit;
public short in_out;
public bNodeSocketTypeHandle ptr_typeinfo;
public char[] idname = new System.Char[64];
public object ptr_default_value;
public short stack_index;
public char display_shape;
public char attribute_domain;
public char[] _pad = new System.Char[4];
public char[] label = new System.Char[64];
public char[] short_label = new System.Char[64];
public char[] description = new System.Char[64];
public char ptr_default_attribute_name;
public int own_index;
public int to_index;
public bNodeLink ptr_link;
public bNodeStack ns;
public bNodeSocketRuntimeHandle ptr_runtime;
public bNodeSocket(
bNodeSocket ptr_next,
bNodeSocket ptr_prev,
IDProperty ptr_prop,
char[] identifier,
char[] name,
object ptr_storage,
short type,
short flag,
short limit,
short in_out,
bNodeSocketTypeHandle ptr_typeinfo,
char[] idname,
object ptr_default_value,
short stack_index,
char display_shape,
char attribute_domain,
char[] _pad,
char[] label,
char[] short_label,
char[] description,
char ptr_default_attribute_name,
int own_index,
int to_index,
bNodeLink ptr_link,
bNodeStack ns,
bNodeSocketRuntimeHandle ptr_runtime) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.ptr_prop = ptr_prop;
this.identifier = identifier;
this.name = name;
this.ptr_storage = ptr_storage;
this.type = type;
this.flag = flag;
this.limit = limit;
this.in_out = in_out;
this.ptr_typeinfo = ptr_typeinfo;
this.idname = idname;
this.ptr_default_value = ptr_default_value;
this.stack_index = stack_index;
this.display_shape = display_shape;
this.attribute_domain = attribute_domain;
this._pad = _pad;
this.label = label;
this.short_label = short_label;
this.description = description;
this.ptr_default_attribute_name = ptr_default_attribute_name;
this.own_index = own_index;
this.to_index = to_index;
this.ptr_link = ptr_link;
this.ns = ns;
this.ptr_runtime = ptr_runtime;
}
}
}