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

36 lines
1.1 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(511, "SDefVert", 16)]
public class SDefVert {
[DNAFieldAttribute(8, "SDefBind", 0, "*binds", "SDefBind", true, 0)]
public SDefBind binds;
[DNAFieldAttribute(4, "int", 1, "numbinds", "int", false, 8)]
public int numbinds;
[DNAFieldAttribute(4, "int", 2, "vertex_idx", "int", false, 12)]
public int vertex_idx;
public SDefVert() {
this.binds = default;
this.numbinds = default;
this.vertex_idx = default;
}
public SDefVert(SDefBind binds, int numbinds, int vertex_idx) {
this.binds = binds;
this.numbinds = numbinds;
this.vertex_idx = vertex_idx;
}
}
}