//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(1073, "XrUserPath")] public class XrUserPath { [DNAFieldAttribute(0, "XrUserPath", "*next", "XrUserPath", 4, true)] public XrUserPath ptr_next; [DNAFieldAttribute(1, "XrUserPath", "*prev", "XrUserPath", 4, true)] public XrUserPath ptr_prev; [DNAFieldAttribute(2, "char", "path[64]", "System.Char[]", 64, false)] public char[] path = new System.Char[64]; public XrUserPath() { this.ptr_next = default; this.ptr_prev = default; this.path = default; } public XrUserPath(XrUserPath ptr_next, XrUserPath ptr_prev, char[] path) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.path = path; } } }