Regenerated codefiles
This commit is contained in:
@@ -15,23 +15,23 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(697, "NodeEnumItem", 24)]
|
||||
public class NodeEnumItem {
|
||||
[DNAFieldAttribute(0, "char", "*name", "char", 8, true, 0)]
|
||||
public char ptr_name;
|
||||
[DNAFieldAttribute(1, "char", "*description", "char", 8, true, 8)]
|
||||
public char ptr_description;
|
||||
[DNAFieldAttribute(2, "int", "identifier", "int", 4, false, 16)]
|
||||
[DNAFieldAttribute(8, "char", 0, "*name", "char", true, 0)]
|
||||
public char name;
|
||||
[DNAFieldAttribute(8, "char", 1, "*description", "char", true, 8)]
|
||||
public char description;
|
||||
[DNAFieldAttribute(4, "int", 2, "identifier", "int", false, 16)]
|
||||
public int identifier;
|
||||
[DNAFieldAttribute(3, "char", "_pad[4]", "System.Char[]", 4, false, 20)]
|
||||
[DNAFieldAttribute(4, "char", 3, "_pad[4]", "System.Char[]", false, 20)]
|
||||
public char[] _pad = new System.Char[4];
|
||||
public NodeEnumItem() {
|
||||
this.ptr_name = default;
|
||||
this.ptr_description = default;
|
||||
this.name = default;
|
||||
this.description = default;
|
||||
this.identifier = default;
|
||||
this._pad = default;
|
||||
}
|
||||
public NodeEnumItem(char ptr_name, char ptr_description, int identifier, char[] _pad) {
|
||||
this.ptr_name = ptr_name;
|
||||
this.ptr_description = ptr_description;
|
||||
public NodeEnumItem(char name, char description, int identifier, char[] _pad) {
|
||||
this.name = name;
|
||||
this.description = description;
|
||||
this.identifier = identifier;
|
||||
this._pad = _pad;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user