Files
BlenderSharp/BlendFile/DNA/StripCrop.cs
2025-03-04 18:48:04 +01:00

40 lines
1.2 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(878, "StripCrop", 16)]
public class StripCrop {
[DNAFieldAttribute(4, "int", 0, "top", "int", false, 0)]
public int top;
[DNAFieldAttribute(4, "int", 1, "bottom", "int", false, 4)]
public int bottom;
[DNAFieldAttribute(4, "int", 2, "left", "int", false, 8)]
public int left;
[DNAFieldAttribute(4, "int", 3, "right", "int", false, 12)]
public int right;
public StripCrop() {
this.top = default;
this.bottom = default;
this.left = default;
this.right = default;
}
public StripCrop(int top, int bottom, int left, int right) {
this.top = top;
this.bottom = bottom;
this.left = left;
this.right = right;
}
}
}