39 lines
1.4 KiB
C#
39 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 BlendFile.CompatTypes;
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
|
|
public class bToolRef {
|
|
public bToolRef ptr_next;
|
|
public bToolRef ptr_prev;
|
|
public char[] idname = new System.Char[64];
|
|
public char[] idname_fallback = new System.Char[64];
|
|
public short tag;
|
|
public short space_type;
|
|
public int mode;
|
|
public IDProperty ptr_properties;
|
|
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;
|
|
}
|
|
}
|
|
}
|