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

13 lines
278 B
C#

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