Files
BlenderSharp/BlendFile/DNA/CacheObjectPath.cs
2025-01-22 02:23:29 +01:00

15 lines
488 B
C#

// Automatically generated by BlenderSharp at 22/01/2025 02:21:57
namespace BlendFile.DNA {
public class CacheObjectPath {
public CacheObjectPath ptr_next;
public CacheObjectPath ptr_prev;
public char[] path = new System.Char[4096];
public CacheObjectPath(CacheObjectPath ptr_next, CacheObjectPath ptr_prev, char[] path) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
this.path = path;
}
}
}