Files
BlenderSharp/BlendFile/DNA/PTCacheExtra.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 System;
namespace BlendFile.DNA {
using BlendFile;
[DNAClassAttribute(790, "PTCacheExtra", 32)]
public class PTCacheExtra {
[DNAFieldAttribute(0, "PTCacheExtra", "*next", "PTCacheExtra", 8, true, 0)]
public PTCacheExtra ptr_next;
[DNAFieldAttribute(1, "PTCacheExtra", "*prev", "PTCacheExtra", 8, true, 8)]
public PTCacheExtra ptr_prev;
[DNAFieldAttribute(2, "int", "type", "int", 4, false, 16)]
public int type;
[DNAFieldAttribute(3, "int", "totdata", "int", 4, false, 20)]
public int totdata;
[DNAFieldAttribute(4, "void", "*data", "void", 8, true, 24)]
public object ptr_data;
public PTCacheExtra() {
this.ptr_next = default;
this.ptr_prev = default;
this.type = default;
this.totdata = default;
this.ptr_data = default;
}
public PTCacheExtra(PTCacheExtra ptr_next, PTCacheExtra ptr_prev, int type, int totdata, object ptr_data) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.type = type;
this.totdata = totdata;
this.ptr_data = ptr_data;
}
}
}