36 lines
1.3 KiB
C#
36 lines
1.3 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(115, "AssetCatalogPathLink", 24)]
|
|
public class AssetCatalogPathLink {
|
|
[DNAFieldAttribute(0, "AssetCatalogPathLink", "*next", "AssetCatalogPathLink", 8, true)]
|
|
public AssetCatalogPathLink ptr_next;
|
|
[DNAFieldAttribute(1, "AssetCatalogPathLink", "*prev", "AssetCatalogPathLink", 8, true)]
|
|
public AssetCatalogPathLink ptr_prev;
|
|
[DNAFieldAttribute(2, "char", "*path", "char", 8, true)]
|
|
public char ptr_path;
|
|
public AssetCatalogPathLink() {
|
|
this.ptr_next = default;
|
|
this.ptr_prev = default;
|
|
this.ptr_path = default;
|
|
}
|
|
public AssetCatalogPathLink(AssetCatalogPathLink ptr_next, AssetCatalogPathLink ptr_prev, char ptr_path) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.ptr_path = ptr_path;
|
|
}
|
|
}
|
|
}
|