44 lines
1.5 KiB
C#
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(8, "PTCacheExtra", 0, "*next", "PTCacheExtra", true, 0)]
|
|
public PTCacheExtra next;
|
|
[DNAFieldAttribute(8, "PTCacheExtra", 1, "*prev", "PTCacheExtra", true, 8)]
|
|
public PTCacheExtra prev;
|
|
[DNAFieldAttribute(4, "int", 2, "type", "int", false, 16)]
|
|
public int type;
|
|
[DNAFieldAttribute(4, "int", 3, "totdata", "int", false, 20)]
|
|
public int totdata;
|
|
[DNAFieldAttribute(8, "void", 4, "*data", "void", true, 24)]
|
|
public object data;
|
|
public PTCacheExtra() {
|
|
this.next = default;
|
|
this.prev = default;
|
|
this.type = default;
|
|
this.totdata = default;
|
|
this.data = default;
|
|
}
|
|
public PTCacheExtra(PTCacheExtra next, PTCacheExtra prev, int type, int totdata, object data) {
|
|
this.next = next;
|
|
this.prev = prev;
|
|
this.type = type;
|
|
this.totdata = totdata;
|
|
this.data = data;
|
|
}
|
|
}
|
|
}
|