Files
BlenderSharp/BlendFile/DNA/IDPropertyData.cs
2025-01-22 20:24:55 +01:00

33 lines
1021 B
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 IDPropertyData {
[DNAFieldAttribute(0, "void", "*pointer", 0)]
public object ptr_pointer;
[DNAFieldAttribute(1, "ListBase", "group", 16)]
public ListBase group;
[DNAFieldAttribute(2, "int", "val", 4)]
public int val;
[DNAFieldAttribute(3, "int", "val2", 4)]
public int val2;
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;
}
}
}