Files
BlenderSharp/BlendFile/DNA/IDPropertyUIDataEnumItem.cs
2025-03-04 18:48:04 +01:00

44 lines
1.5 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(17, "IDPropertyUIDataEnumItem", 32)]
public class IDPropertyUIDataEnumItem {
[DNAFieldAttribute(8, "char", 0, "*identifier", "char", true, 0)]
public char identifier;
[DNAFieldAttribute(8, "char", 1, "*name", "char", true, 8)]
public char name;
[DNAFieldAttribute(8, "char", 2, "*description", "char", true, 16)]
public char description;
[DNAFieldAttribute(4, "int", 3, "value", "int", false, 24)]
public int value;
[DNAFieldAttribute(4, "int", 4, "icon", "int", false, 28)]
public int icon;
public IDPropertyUIDataEnumItem() {
this.identifier = default;
this.name = default;
this.description = default;
this.value = default;
this.icon = default;
}
public IDPropertyUIDataEnumItem(char identifier, char name, char description, int value, int icon) {
this.identifier = identifier;
this.name = name;
this.description = description;
this.value = value;
this.icon = icon;
}
}
}