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

15 lines
428 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public struct GreasePencilDrawingBase {
public int8_t type;
public char[] _pad = new System.Char[3];
public int flag;
public GreasePencilDrawingBase(int8_t type, char[] _pad, int flag) {
this.type = type;
this._pad = _pad;
this.flag = flag;
}
}
}