//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(31, "ID_Runtime_Remap", 16)] public struct ID_Runtime_Remap { [DNAFieldAttribute(0, "int", "status", "int", 4, false, 0)] public int status; [DNAFieldAttribute(1, "int", "skipped_refcounted", "int", 4, false, 4)] public int skipped_refcounted; [DNAFieldAttribute(2, "int", "skipped_direct", "int", 4, false, 8)] public int skipped_direct; [DNAFieldAttribute(3, "int", "skipped_indirect", "int", 4, 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; } } }