- Added auto generation of DNAClass attributes on file generation - Regenerated all files
31 lines
1.0 KiB
C#
31 lines
1.0 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")]
|
|
public class AssetCatalogPathLink {
|
|
[DNAFieldAttribute(0, "AssetCatalogPathLink", "*next", 24)]
|
|
public AssetCatalogPathLink ptr_next;
|
|
[DNAFieldAttribute(1, "AssetCatalogPathLink", "*prev", 24)]
|
|
public AssetCatalogPathLink ptr_prev;
|
|
[DNAFieldAttribute(2, "char", "*path", 1)]
|
|
public char ptr_path;
|
|
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;
|
|
}
|
|
}
|
|
}
|