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

36 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(254, "bGPDspoint_Runtime", 16)]
public class bGPDspoint_Runtime {
[DNAFieldAttribute(8, "bGPDspoint", 0, "*pt_orig", "bGPDspoint", true, 0)]
public bGPDspoint pt_orig;
[DNAFieldAttribute(4, "int", 1, "idx_orig", "int", false, 8)]
public int idx_orig;
[DNAFieldAttribute(4, "char", 2, "_pad0[4]", "System.Char[]", false, 12)]
public char[] _pad0 = new System.Char[4];
public bGPDspoint_Runtime() {
this.pt_orig = default;
this.idx_orig = default;
this._pad0 = default;
}
public bGPDspoint_Runtime(bGPDspoint pt_orig, int idx_orig, char[] _pad0) {
this.pt_orig = pt_orig;
this.idx_orig = idx_orig;
this._pad0 = _pad0;
}
}
}