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

32 lines
1.1 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(21, "IDPropertyUIDataString", 24)]
public class IDPropertyUIDataString {
[DNAFieldAttribute(16, "IDPropertyUIData", 0, "base", "IDPropertyUIData", false, 0)]
public IDPropertyUIData @base;
[DNAFieldAttribute(8, "char", 1, "*default_value", "char", true, 16)]
public char default_value;
public IDPropertyUIDataString() {
this.@base = default;
this.default_value = default;
}
public IDPropertyUIDataString(IDPropertyUIData @base, char default_value) {
this.@base = @base;
this.default_value = default_value;
}
}
}