Files
BlenderSharp/BlendFile/DNA/bAddon.cs
2025-03-12 19:02:40 +01:00

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