Files
BlenderSharp/BlendFile/DNA/IDProperty.cs

44 lines
1.5 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;
// Automatically generated by BlenderSharp at 01/22/2025 16:57:57
namespace BlendFile.DNA {
public class IDProperty {
public IDProperty ptr_next;
public IDProperty ptr_prev;
public char type;
public char subtype;
public short flag;
public char[] name = new System.Char[64];
public char[] _pad0 = new System.Char[4];
public IDPropertyData data;
public int len;
public int totallen;
public IDPropertyUIData ptr_ui_data;
public IDProperty(IDProperty ptr_next, IDProperty ptr_prev, char type, char subtype, short flag, char[] name, char[] _pad0, IDPropertyData data, int len, int totallen, IDPropertyUIData ptr_ui_data) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.type = type;
this.subtype = subtype;
this.flag = flag;
this.name = name;
this._pad0 = _pad0;
this.data = data;
this.len = len;
this.totallen = totallen;
this.ptr_ui_data = ptr_ui_data;
}
}
}