32 lines
976 B
C#
32 lines
976 B
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(837, "SceneHydra", 8)]
|
|
public class SceneHydra {
|
|
[DNAFieldAttribute(4, "int", 0, "export_method", "int", false, 0)]
|
|
public int export_method;
|
|
[DNAFieldAttribute(4, "int", 1, "_pad0", "int", false, 4)]
|
|
public int _pad0;
|
|
public SceneHydra() {
|
|
this.export_method = default;
|
|
this._pad0 = default;
|
|
}
|
|
public SceneHydra(int export_method, int _pad0) {
|
|
this.export_method = export_method;
|
|
this._pad0 = _pad0;
|
|
}
|
|
}
|
|
}
|