36 lines
1.1 KiB
C#
36 lines
1.1 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(435, "MDisps", 16)]
|
|
public class MDisps {
|
|
[DNAFieldAttribute(4, "int", 0, "totdisp", "int", false, 0)]
|
|
public int totdisp;
|
|
[DNAFieldAttribute(4, "int", 1, "level", "int", false, 4)]
|
|
public int level;
|
|
[DNAFieldAttribute(8, "int", 3, "*hidden", "int", true, 8)]
|
|
public int hidden;
|
|
public MDisps() {
|
|
this.totdisp = default;
|
|
this.level = default;
|
|
this.hidden = default;
|
|
}
|
|
public MDisps(int totdisp, int level, int hidden) {
|
|
this.totdisp = totdisp;
|
|
this.level = level;
|
|
this.hidden = hidden;
|
|
}
|
|
}
|
|
}
|