- Added auto generation of DNAClass attributes on file generation - Regenerated all files
34 lines
1.2 KiB
C#
34 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(31, "ID_Runtime_Remap")]
|
|
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;
|
|
}
|
|
}
|
|
}
|