- Added auto generation of DNAClass attributes on file generation - Regenerated all files
34 lines
1.0 KiB
C#
34 lines
1.0 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")]
|
|
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;
|
|
}
|
|
}
|
|
}
|