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")]
|
|
public class NodesModifierBakeFile {
|
|
[DNAFieldAttribute(0, "char", "*name", "char", 4, true)]
|
|
public char ptr_name;
|
|
[DNAFieldAttribute(1, "PackedFile", "*packed_file", "PackedFile", 4, true)]
|
|
public PackedFile ptr_packed_file;
|
|
public NodesModifierBakeFile() {
|
|
this.ptr_name = default;
|
|
this.ptr_packed_file = default;
|
|
}
|
|
public NodesModifierBakeFile(char ptr_name, PackedFile ptr_packed_file) {
|
|
this.ptr_name = ptr_name;
|
|
this.ptr_packed_file = ptr_packed_file;
|
|
}
|
|
}
|
|
}
|