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 struct SpaceGraph_Runtime {
|
|
[DNAFieldAttribute(0, "char", "flag", "char", 1, false)]
|
|
public char flag;
|
|
[DNAFieldAttribute(1, "char", "_pad[7]", "System.Char[]", 7, false)]
|
|
public char[] _pad = new System.Char[7];
|
|
[DNAFieldAttribute(2, "ListBase", "ghost_curves", "ListBase", 16, false)]
|
|
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;
|
|
}
|
|
}
|
|
}
|