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

17 lines
440 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct StripCrop {
public int top;
public int bottom;
public int left;
public int right;
public StripCrop(int top, int bottom, int left, int right) {
this.top = top;
this.bottom = bottom;
this.left = left;
this.right = right;
}
}
}