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

13 lines
294 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct NodeTwoFloats {
public float x;
public float y;
public NodeTwoFloats(float x, float y) {
this.x = x;
this.y = y;
}
}
}