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(115, "AssetCatalogPathLink", 24)]
|
|
public class AssetCatalogPathLink {
|
|
[DNAFieldAttribute(8, "AssetCatalogPathLink", 0, "*next", "AssetCatalogPathLink", true, 0)]
|
|
public AssetCatalogPathLink next;
|
|
[DNAFieldAttribute(8, "AssetCatalogPathLink", 1, "*prev", "AssetCatalogPathLink", true, 8)]
|
|
public AssetCatalogPathLink prev;
|
|
[DNAFieldAttribute(8, "char", 2, "*path", "char", true, 16)]
|
|
public char path;
|
|
public AssetCatalogPathLink() {
|
|
this.next = default;
|
|
this.prev = default;
|
|
this.path = default;
|
|
}
|
|
public AssetCatalogPathLink(AssetCatalogPathLink next, AssetCatalogPathLink prev, char path) {
|
|
this.next = next;
|
|
this.prev = prev;
|
|
this.path = path;
|
|
}
|
|
}
|
|
}
|