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

36 lines
1.2 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(32, "ID_Runtime", 32)]
public class ID_Runtime {
[DNAFieldAttribute(16, "ID_Runtime_Remap", 0, "remap", "ID_Runtime_Remap", false, 0)]
public ID_Runtime_Remap remap;
[DNAFieldAttribute(8, "Depsgraph", 1, "*depsgraph", "Depsgraph", true, 16)]
public Depsgraph depsgraph;
[DNAFieldAttribute(8, "void", 2, "*_pad", "void", true, 24)]
public object _pad;
public ID_Runtime() {
this.remap = default;
this.depsgraph = default;
this._pad = default;
}
public ID_Runtime(ID_Runtime_Remap remap, Depsgraph depsgraph, object _pad) {
this.remap = remap;
this.depsgraph = depsgraph;
this._pad = _pad;
}
}
}