Files
BlenderSharp/BlendFile/DNA/PaintCurve.cs
2025-01-22 20:24:55 +01:00

33 lines
1.0 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;
public class PaintCurve {
[DNAFieldAttribute(0, "ID", "id", 208)]
public ID id;
[DNAFieldAttribute(1, "PaintCurvePoint", "*points", 76)]
public PaintCurvePoint ptr_points;
[DNAFieldAttribute(2, "int", "tot_points", 4)]
public int tot_points;
[DNAFieldAttribute(3, "int", "add_index", 4)]
public int add_index;
public PaintCurve(ID id, PaintCurvePoint ptr_points, int tot_points, int add_index) {
this.id = id;
this.ptr_points = ptr_points;
this.tot_points = tot_points;
this.add_index = add_index;
}
}
}