Regenerated codefiles
This commit is contained in:
@@ -15,20 +15,20 @@ namespace BlendFile.DNA {
|
||||
|
||||
[DNAClassAttribute(1071, "XrComponentPath", 208)]
|
||||
public class XrComponentPath {
|
||||
[DNAFieldAttribute(0, "XrComponentPath", "*next", "XrComponentPath", 8, true, 0)]
|
||||
public XrComponentPath ptr_next;
|
||||
[DNAFieldAttribute(1, "XrComponentPath", "*prev", "XrComponentPath", 8, true, 8)]
|
||||
public XrComponentPath ptr_prev;
|
||||
[DNAFieldAttribute(2, "char", "path[192]", "System.Char[]", 192, false, 16)]
|
||||
[DNAFieldAttribute(8, "XrComponentPath", 0, "*next", "XrComponentPath", true, 0)]
|
||||
public XrComponentPath next;
|
||||
[DNAFieldAttribute(8, "XrComponentPath", 1, "*prev", "XrComponentPath", true, 8)]
|
||||
public XrComponentPath prev;
|
||||
[DNAFieldAttribute(192, "char", 2, "path[192]", "System.Char[]", false, 16)]
|
||||
public char[] path = new System.Char[192];
|
||||
public XrComponentPath() {
|
||||
this.ptr_next = default;
|
||||
this.ptr_prev = default;
|
||||
this.next = default;
|
||||
this.prev = default;
|
||||
this.path = default;
|
||||
}
|
||||
public XrComponentPath(XrComponentPath ptr_next, XrComponentPath ptr_prev, char[] path) {
|
||||
this.ptr_next = ptr_next;
|
||||
this.ptr_prev = ptr_prev;
|
||||
public XrComponentPath(XrComponentPath next, XrComponentPath prev, char[] path) {
|
||||
this.next = next;
|
||||
this.prev = prev;
|
||||
this.path = path;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user