Files
BlenderSharp/BlendFile/DNA/XrUserPath.cs

36 lines
1.1 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(1073, "XrUserPath")]
public class XrUserPath {
[DNAFieldAttribute(0, "XrUserPath", "*next", 80)]
public XrUserPath ptr_next;
[DNAFieldAttribute(1, "XrUserPath", "*prev", 80)]
public XrUserPath ptr_prev;
[DNAFieldAttribute(2, "char", "path[64]", 1)]
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;
}
}
}