Files
BlenderSharp/BlendFile/DNA/ModifierViewerPathElem.cs
2025-01-22 02:23:29 +01:00

13 lines
407 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class ModifierViewerPathElem {
public ViewerPathElem @base;
public char ptr_modifier_name;
public ModifierViewerPathElem(ViewerPathElem @base, char ptr_modifier_name) {
this.@base = @base;
this.ptr_modifier_name = ptr_modifier_name;
}
}
}