36 lines
1.1 KiB
C#
36 lines
1.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(110, "AssetTag", 80)]
|
|
public class AssetTag {
|
|
[DNAFieldAttribute(8, "AssetTag", 0, "*next", "AssetTag", true, 0)]
|
|
public AssetTag next;
|
|
[DNAFieldAttribute(8, "AssetTag", 1, "*prev", "AssetTag", true, 8)]
|
|
public AssetTag prev;
|
|
[DNAFieldAttribute(64, "char", 2, "name[64]", "System.Char[]", false, 16)]
|
|
public char[] name = new System.Char[64];
|
|
public AssetTag() {
|
|
this.next = default;
|
|
this.prev = default;
|
|
this.name = default;
|
|
}
|
|
public AssetTag(AssetTag next, AssetTag prev, char[] name) {
|
|
this.next = next;
|
|
this.prev = prev;
|
|
this.name = name;
|
|
}
|
|
}
|
|
}
|