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

32 lines
949 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(624, "NodeScriptDict", 16)]
public class NodeScriptDict {
[DNAFieldAttribute(8, "void", 0, "*dict", "void", true, 0)]
public object dict;
[DNAFieldAttribute(8, "void", 1, "*node", "void", true, 8)]
public object node;
public NodeScriptDict() {
this.dict = default;
this.node = default;
}
public NodeScriptDict(object dict, object node) {
this.dict = dict;
this.node = node;
}
}
}