//------------------------------------------------------------------------------ // // 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(312, "GreasePencilFrame", 12)] public struct GreasePencilFrame { [DNAFieldAttribute(0, "int", "drawing_index", "int", 4, false)] public int drawing_index; [DNAFieldAttribute(1, "int", "flag", "int", 4, false)] public int flag; [DNAFieldAttribute(2, "int8_t", "type", "int8_t", 1, false)] public sbyte type; [DNAFieldAttribute(3, "char", "_pad[3]", "System.Char[]", 3, false)] public char[] _pad = new System.Char[3]; public GreasePencilFrame() { this.drawing_index = default; this.flag = default; this.type = default; this._pad = default; } public GreasePencilFrame(int drawing_index, int flag, sbyte type, char[] _pad) { this.drawing_index = drawing_index; this.flag = flag; this.type = type; this._pad = _pad; } } }