Files
BlenderSharp/BlendFile/DNA/vec2s.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 vec2s {
public short x;
public short y;
public vec2s(short x, short y) {
this.x = x;
this.y = y;
}
}
}