48 lines
1.9 KiB
C#
48 lines
1.9 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;
|
|
|
|
public class bToolRef {
|
|
[DNAFieldAttribute(0, "bToolRef", "*next", 168)]
|
|
public bToolRef ptr_next;
|
|
[DNAFieldAttribute(1, "bToolRef", "*prev", 168)]
|
|
public bToolRef ptr_prev;
|
|
[DNAFieldAttribute(2, "char", "idname[64]", 1)]
|
|
public char[] idname = new System.Char[64];
|
|
[DNAFieldAttribute(3, "char", "idname_fallback[64]", 1)]
|
|
public char[] idname_fallback = new System.Char[64];
|
|
[DNAFieldAttribute(4, "short", "tag", 2)]
|
|
public short tag;
|
|
[DNAFieldAttribute(5, "short", "space_type", 2)]
|
|
public short space_type;
|
|
[DNAFieldAttribute(6, "int", "mode", 4)]
|
|
public int mode;
|
|
[DNAFieldAttribute(7, "IDProperty", "*properties", 136)]
|
|
public IDProperty ptr_properties;
|
|
[DNAFieldAttribute(8, "bToolRef_Runtime", "*runtime", 0)]
|
|
public bToolRef_Runtime ptr_runtime;
|
|
public bToolRef(bToolRef ptr_next, bToolRef ptr_prev, char[] idname, char[] idname_fallback, short tag, short space_type, int mode, IDProperty ptr_properties, bToolRef_Runtime ptr_runtime) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.idname = idname;
|
|
this.idname_fallback = idname_fallback;
|
|
this.tag = tag;
|
|
this.space_type = space_type;
|
|
this.mode = mode;
|
|
this.ptr_properties = ptr_properties;
|
|
this.ptr_runtime = ptr_runtime;
|
|
}
|
|
}
|
|
}
|