Files
BlenderSharp/BlendFile/DNA/IDPropertyUIData.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(16, "IDPropertyUIData", 16)]
public class IDPropertyUIData {
[DNAFieldAttribute(8, "char", 0, "*description", "char", true, 0)]
public char description;
[DNAFieldAttribute(4, "int", 1, "rna_subtype", "int", false, 8)]
public int rna_subtype;
[DNAFieldAttribute(4, "char", 2, "_pad[4]", "System.Char[]", false, 12)]
public char[] _pad = new System.Char[4];
public IDPropertyUIData() {
this.description = default;
this.rna_subtype = default;
this._pad = default;
}
public IDPropertyUIData(char description, int rna_subtype, char[] _pad) {
this.description = description;
this.rna_subtype = rna_subtype;
this._pad = _pad;
}
}
}