//------------------------------------------------------------------------------ // // 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(324, "ImageView", 1104)] public class ImageView { [DNAFieldAttribute(8, "ImageView", 0, "*next", "ImageView", true, 0)] public ImageView next; [DNAFieldAttribute(8, "ImageView", 1, "*prev", "ImageView", true, 8)] public ImageView prev; [DNAFieldAttribute(64, "char", 2, "name[64]", "System.Char[]", false, 16)] public char[] name = new System.Char[64]; [DNAFieldAttribute(1024, "char", 3, "filepath[1024]", "System.Char[]", false, 80)] public char[] filepath = new System.Char[1024]; public ImageView() { this.next = default; this.prev = default; this.name = default; this.filepath = default; } public ImageView(ImageView next, ImageView prev, char[] name, char[] filepath) { this.next = next; this.prev = prev; this.name = name; this.filepath = filepath; } } }