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

15 lines
519 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct ForeachGeometryElementZoneViewerPathElem {
public ViewerPathElem @base;
public int zone_output_node_id;
public int index;
public ForeachGeometryElementZoneViewerPathElem(ViewerPathElem @base, int zone_output_node_id, int index) {
this.@base = @base;
this.zone_output_node_id = zone_output_node_id;
this.index = index;
}
}
}