Files
BlenderSharp/BlendFile/DNA/NodeSimulationItem.cs
2025-03-04 18:48:04 +01:00

40 lines
1.4 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(731, "NodeSimulationItem", 16)]
public class NodeSimulationItem {
[DNAFieldAttribute(8, "char", 0, "*name", "char", true, 0)]
public char name;
[DNAFieldAttribute(2, "short", 1, "socket_type", "short", false, 8)]
public short socket_type;
[DNAFieldAttribute(2, "short", 2, "attribute_domain", "short", false, 10)]
public short attribute_domain;
[DNAFieldAttribute(4, "int", 3, "identifier", "int", false, 12)]
public int identifier;
public NodeSimulationItem() {
this.name = default;
this.socket_type = default;
this.attribute_domain = default;
this.identifier = default;
}
public NodeSimulationItem(char name, short socket_type, short attribute_domain, int identifier) {
this.name = name;
this.socket_type = socket_type;
this.attribute_domain = attribute_domain;
this.identifier = identifier;
}
}
}