Files
BlenderSharp/BlendFile/DNA/IDPropertyData.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(23, "IDPropertyData", 32)]
public class IDPropertyData {
[DNAFieldAttribute(0, "void", "*pointer", "void", 8, true, 0)]
public object ptr_pointer;
[DNAFieldAttribute(1, "ListBase", "group", "ListBase", 16, false, 8)]
public ListBase group;
[DNAFieldAttribute(2, "int", "val", "int", 4, false, 24)]
public int val;
[DNAFieldAttribute(3, "int", "val2", "int", 4, false, 28)]
public int val2;
public IDPropertyData() {
this.ptr_pointer = default;
this.group = default;
this.val = default;
this.val2 = default;
}
public IDPropertyData(object ptr_pointer, ListBase group, int val, int val2) {
this.ptr_pointer = ptr_pointer;
this.group = group;
this.val = val;
this.val2 = val2;
}
}
}