Files
BlenderSharp/BlendFile/DNA/ID_Runtime_Remap.cs
2025-01-22 20:24:55 +01:00

33 lines
1.1 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;
public struct ID_Runtime_Remap {
[DNAFieldAttribute(0, "int", "status", 4)]
public int status;
[DNAFieldAttribute(1, "int", "skipped_refcounted", 4)]
public int skipped_refcounted;
[DNAFieldAttribute(2, "int", "skipped_direct", 4)]
public int skipped_direct;
[DNAFieldAttribute(3, "int", "skipped_indirect", 4)]
public int skipped_indirect;
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;
}
}
}