Files
BlenderSharp/BlendFile/DNA/XrUserPath.cs
2025-01-22 20:24:55 +01:00

30 lines
955 B
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;
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(XrUserPath ptr_next, XrUserPath ptr_prev, char[] path) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.path = path;
}
}
}