Files
BlenderSharp/BlendFile/DNA/PTCacheMem.cs
2025-03-11 19:12:04 +01:00

56 lines
2.1 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(791, "PTCacheMem", 48)]
public class PTCacheMem {
[DNAFieldAttribute(8, "PTCacheMem", 0, "*next", "PTCacheMem", true, 0)]
public PTCacheMem next;
[DNAFieldAttribute(8, "PTCacheMem", 1, "*prev", "PTCacheMem", true, 8)]
public PTCacheMem prev;
[DNAFieldAttribute(4, "int", 2, "frame", "int", false, 16)]
public int frame;
[DNAFieldAttribute(4, "int", 3, "totpoint", "int", false, 20)]
public int totpoint;
[DNAFieldAttribute(4, "int", 4, "data_types", "int", false, 24)]
public int data_types;
[DNAFieldAttribute(4, "int", 5, "flag", "int", false, 28)]
public int flag;
[DNAArrayAttribute(0, "void", 6, "*data[8]", "System.Object[]", 8, 32)]
public object[] data = new System.Object[8];
[DNAFieldAttribute(16, "ListBase", 7, "extradata", "ListBase", false, 32)]
public ListBase extradata;
public PTCacheMem() {
this.next = default;
this.prev = default;
this.frame = default;
this.totpoint = default;
this.data_types = default;
this.flag = default;
this.data = default;
this.extradata = default;
}
public PTCacheMem(PTCacheMem next, PTCacheMem prev, int frame, int totpoint, int data_types, int flag, object[] data, ListBase extradata) {
this.next = next;
this.prev = prev;
this.frame = frame;
this.totpoint = totpoint;
this.data_types = data_types;
this.flag = flag;
this.data = data;
this.extradata = extradata;
}
}
}