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

32 lines
1.0 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(1032, "ModifierViewerPathElem", 40)]
public class ModifierViewerPathElem {
[DNAFieldAttribute(32, "ViewerPathElem", 0, "base", "ViewerPathElem", false, 0)]
public ViewerPathElem @base;
[DNAFieldAttribute(8, "char", 1, "*modifier_name", "char", true, 32)]
public char modifier_name;
public ModifierViewerPathElem() {
this.@base = default;
this.modifier_name = default;
}
public ModifierViewerPathElem(ViewerPathElem @base, char modifier_name) {
this.@base = @base;
this.modifier_name = modifier_name;
}
}
}