Files
BlenderSharp/BlendFile/DNA/XrUserPath.cs
2025-03-12 19:02:40 +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(1073, "XrUserPath", 80)]
public class XrUserPath {
[DNAFieldAttribute(8, "XrUserPath", 0, "*next", "XrUserPath", true, 0)]
public XrUserPath next;
[DNAFieldAttribute(8, "XrUserPath", 1, "*prev", "XrUserPath", true, 8)]
public XrUserPath prev;
[DNAArrayAttribute(64, "char", 2, "path[64]", "System.Char[]", 64, false, 16)]
public char[] path = new System.Char[64];
public XrUserPath() {
this.next = default;
this.prev = default;
this.path = default;
}
public XrUserPath(XrUserPath next, XrUserPath prev, char[] path) {
this.next = next;
this.prev = prev;
this.path = path;
}
}
}