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

13 lines
360 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct NodeGeometryViewer {
public int8_t data_type;
public int8_t domain;
public NodeGeometryViewer(int8_t data_type, int8_t domain) {
this.data_type = data_type;
this.domain = domain;
}
}
}