36 lines
1.2 KiB
C#
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(931, "SpaceGraph_Runtime", 24)]
|
|
public class SpaceGraph_Runtime {
|
|
[DNAFieldAttribute(1, "char", 0, "flag", "char", false, 0)]
|
|
public char flag;
|
|
[DNAFieldAttribute(7, "char", 1, "_pad[7]", "System.Char[]", false, 1)]
|
|
public char[] _pad = new System.Char[7];
|
|
[DNAFieldAttribute(16, "ListBase", 2, "ghost_curves", "ListBase", false, 8)]
|
|
public ListBase ghost_curves;
|
|
public SpaceGraph_Runtime() {
|
|
this.flag = default;
|
|
this._pad = default;
|
|
this.ghost_curves = default;
|
|
}
|
|
public SpaceGraph_Runtime(char flag, char[] _pad, ListBase ghost_curves) {
|
|
this.flag = flag;
|
|
this._pad = _pad;
|
|
this.ghost_curves = ghost_curves;
|
|
}
|
|
}
|
|
}
|