Files
BlenderSharp/BlendFile/DNA/TreeStore.cs
2025-03-04 18:48:04 +01:00

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(775, "TreeStore", 16)]
public class TreeStore {
[DNAFieldAttribute(4, "int", 0, "totelem", "int", false, 0)]
public int totelem;
[DNAFieldAttribute(4, "int", 1, "usedelem", "int", false, 4)]
public int usedelem;
[DNAFieldAttribute(8, "TreeStoreElem", 2, "*data", "TreeStoreElem", true, 8)]
public TreeStoreElem data;
public TreeStore() {
this.totelem = default;
this.usedelem = default;
this.data = default;
}
public TreeStore(int totelem, int usedelem, TreeStoreElem data) {
this.totelem = totelem;
this.usedelem = usedelem;
this.data = data;
}
}
}