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

40 lines
1.5 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(31, "ID_Runtime_Remap", 16)]
public class ID_Runtime_Remap {
[DNAFieldAttribute(4, "int", 0, "status", "int", false, 0)]
public int status;
[DNAFieldAttribute(4, "int", 1, "skipped_refcounted", "int", false, 4)]
public int skipped_refcounted;
[DNAFieldAttribute(4, "int", 2, "skipped_direct", "int", false, 8)]
public int skipped_direct;
[DNAFieldAttribute(4, "int", 3, "skipped_indirect", "int", false, 12)]
public int skipped_indirect;
public ID_Runtime_Remap() {
this.status = default;
this.skipped_refcounted = default;
this.skipped_direct = default;
this.skipped_indirect = default;
}
public ID_Runtime_Remap(int status, int skipped_refcounted, int skipped_direct, int skipped_indirect) {
this.status = status;
this.skipped_refcounted = skipped_refcounted;
this.skipped_direct = skipped_direct;
this.skipped_indirect = skipped_indirect;
}
}
}