Files
BlenderSharp/BlendFile/DNA/wmOwnerID.cs
2025-03-11 19:12:04 +01:00

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(1067, "wmOwnerID", 144)]
public class wmOwnerID {
[DNAFieldAttribute(8, "wmOwnerID", 0, "*next", "wmOwnerID", true, 0)]
public wmOwnerID next;
[DNAFieldAttribute(8, "wmOwnerID", 1, "*prev", "wmOwnerID", true, 8)]
public wmOwnerID prev;
[DNAArrayAttribute(128, "char", 2, "name[128]", "System.Char[]", 128, 16)]
public char[] name = new System.Char[128];
public wmOwnerID() {
this.next = default;
this.prev = default;
this.name = default;
}
public wmOwnerID(wmOwnerID next, wmOwnerID prev, char[] name) {
this.next = next;
this.prev = prev;
this.name = name;
}
}
}