//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ 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, false, 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; } } }