Files
BlenderSharp/BlendFile/DNA/bNodeTreeInterfaceSocket.cs
2025-01-22 02:23:29 +01:00

31 lines
1.4 KiB
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class bNodeTreeInterfaceSocket {
public bNodeTreeInterfaceItem item;
public char ptr_name;
public char ptr_description;
public char ptr_socket_type;
public int flag;
public short attribute_domain;
public short default_input;
public char ptr_default_attribute_name;
public char ptr_identifier;
public object ptr_socket_data;
public IDProperty ptr_properties;
public bNodeTreeInterfaceSocket(bNodeTreeInterfaceItem item, char ptr_name, char ptr_description, char ptr_socket_type, int flag, short attribute_domain, short default_input, char ptr_default_attribute_name, char ptr_identifier, object ptr_socket_data, IDProperty ptr_properties) {
this.item = item;
this.ptr_name = ptr_name;
this.ptr_description = ptr_description;
this.ptr_socket_type = ptr_socket_type;
this.flag = flag;
this.attribute_domain = attribute_domain;
this.default_input = default_input;
this.ptr_default_attribute_name = ptr_default_attribute_name;
this.ptr_identifier = ptr_identifier;
this.ptr_socket_data = ptr_socket_data;
this.ptr_properties = ptr_properties;
}
}
}