32 lines
1.0 KiB
C#
32 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;
|
|
|
|
[DNAClassAttribute(516, "NodesModifierBakeFile", 16)]
|
|
public class NodesModifierBakeFile {
|
|
[DNAFieldAttribute(8, "char", 0, "*name", "char", true, 0)]
|
|
public char name;
|
|
[DNAFieldAttribute(8, "PackedFile", 1, "*packed_file", "PackedFile", true, 8)]
|
|
public PackedFile packed_file;
|
|
public NodesModifierBakeFile() {
|
|
this.name = default;
|
|
this.packed_file = default;
|
|
}
|
|
public NodesModifierBakeFile(char name, PackedFile packed_file) {
|
|
this.name = name;
|
|
this.packed_file = packed_file;
|
|
}
|
|
}
|
|
}
|