Files
BlenderSharp/BlendFile/DNA/XrComponentPath.cs
2025-03-04 18:48:04 +01:00

36 lines
1.2 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(1071, "XrComponentPath", 208)]
public class XrComponentPath {
[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.next = default;
this.prev = default;
this.path = default;
}
public XrComponentPath(XrComponentPath next, XrComponentPath prev, char[] path) {
this.next = next;
this.prev = prev;
this.path = path;
}
}
}