Files
BlenderSharp/BlendFile/DNA/IDPropertyUIDataID.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(22, "IDPropertyUIDataID", 24)]
public class IDPropertyUIDataID {
[DNAFieldAttribute(16, "IDPropertyUIData", 0, "base", "IDPropertyUIData", false, 0)]
public IDPropertyUIData @base;
[DNAFieldAttribute(2, "short", 1, "id_type", "short", false, 16)]
public short id_type;
[DNAFieldAttribute(6, "char", 2, "_pad[6]", "System.Char[]", false, 18)]
public char[] _pad = new System.Char[6];
public IDPropertyUIDataID() {
this.@base = default;
this.id_type = default;
this._pad = default;
}
public IDPropertyUIDataID(IDPropertyUIData @base, short id_type, char[] _pad) {
this.@base = @base;
this.id_type = id_type;
this._pad = _pad;
}
}
}