Files
BlenderSharp/BlendFile/DNA/bAddon.cs

40 lines
1.4 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(998, "bAddon", 152)]
public class bAddon {
[DNAFieldAttribute(0, "bAddon", "*next", "bAddon", 8, true, 0)]
public bAddon ptr_next;
[DNAFieldAttribute(1, "bAddon", "*prev", "bAddon", 8, true, 8)]
public bAddon ptr_prev;
[DNAFieldAttribute(2, "char", "module[128]", "System.Char[]", 128, false, 16)]
public char[] module = new System.Char[128];
[DNAFieldAttribute(3, "IDProperty", "*prop", "IDProperty", 8, true, 144)]
public IDProperty ptr_prop;
public bAddon() {
this.ptr_next = default;
this.ptr_prev = default;
this.module = default;
this.ptr_prop = default;
}
public bAddon(bAddon ptr_next, bAddon ptr_prev, char[] module, IDProperty ptr_prop) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.module = module;
this.ptr_prop = ptr_prop;
}
}
}