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

30 lines
939 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 {
public class NodesModifierDataBlock {
public char ptr_id_name;
public char ptr_lib_name;
public ID ptr_id;
public int id_type;
public char[] _pad = new System.Char[4];
public NodesModifierDataBlock(char ptr_id_name, char ptr_lib_name, ID ptr_id, int id_type, char[] _pad) {
this.ptr_id_name = ptr_id_name;
this.ptr_lib_name = ptr_lib_name;
this.ptr_id = ptr_id;
this.id_type = id_type;
this._pad = _pad;
}
}
}