Regenerated codefiles
This commit is contained in:
@@ -15,20 +15,20 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(110, "AssetTag", 80)]
|
||||
public class AssetTag {
|
||||
[DNAFieldAttribute(0, "AssetTag", "*next", "AssetTag", 8, true, 0)]
|
||||
public AssetTag ptr_next;
|
||||
[DNAFieldAttribute(1, "AssetTag", "*prev", "AssetTag", 8, true, 8)]
|
||||
public AssetTag ptr_prev;
|
||||
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false, 16)]
|
||||
[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.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.name = default;
|
||||
}
|
||||
public AssetTag(AssetTag ptr_next, AssetTag ptr_prev, char[] name) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
public AssetTag(AssetTag next, AssetTag prev, char[] name) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user