Files
BlenderSharp/BlendFile/DNA/bAddon.cs

40 lines
1.3 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")]
public class bAddon {
[DNAFieldAttribute(0, "bAddon", "*next", 152)]
public bAddon ptr_next;
[DNAFieldAttribute(1, "bAddon", "*prev", 152)]
public bAddon ptr_prev;
[DNAFieldAttribute(2, "char", "module[128]", 1)]
public char[] module = new System.Char[128];
[DNAFieldAttribute(3, "IDProperty", "*prop", 136)]
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;
}
}
}