36 lines
1.2 KiB
C#
36 lines
1.2 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(140, "CacheObjectPath", 4112)]
|
|
public class CacheObjectPath {
|
|
[DNAFieldAttribute(8, "CacheObjectPath", 0, "*next", "CacheObjectPath", true, 0)]
|
|
public CacheObjectPath next;
|
|
[DNAFieldAttribute(8, "CacheObjectPath", 1, "*prev", "CacheObjectPath", true, 8)]
|
|
public CacheObjectPath prev;
|
|
[DNAFieldAttribute(4096, "char", 2, "path[4096]", "System.Char[]", false, 16)]
|
|
public char[] path = new System.Char[4096];
|
|
public CacheObjectPath() {
|
|
this.next = default;
|
|
this.prev = default;
|
|
this.path = default;
|
|
}
|
|
public CacheObjectPath(CacheObjectPath next, CacheObjectPath prev, char[] path) {
|
|
this.next = next;
|
|
this.prev = prev;
|
|
this.path = path;
|
|
}
|
|
}
|
|
}
|