//------------------------------------------------------------------------------ // // 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; public class ScrArea { [DNAFieldAttribute(0, "ScrArea", "*next", 184)] public ScrArea ptr_next; [DNAFieldAttribute(1, "ScrArea", "*prev", 184)] public ScrArea ptr_prev; [DNAFieldAttribute(2, "ScrVert", "*v1", 32)] public ScrVert ptr_v1; [DNAFieldAttribute(3, "ScrVert", "*v2", 32)] public ScrVert ptr_v2; [DNAFieldAttribute(4, "ScrVert", "*v3", 32)] public ScrVert ptr_v3; [DNAFieldAttribute(5, "ScrVert", "*v4", 32)] public ScrVert ptr_v4; [DNAFieldAttribute(6, "bScreen", "*full", 336)] public bScreen ptr_full; [DNAFieldAttribute(7, "rcti", "totrct", 16)] public rcti totrct; [DNAFieldAttribute(8, "char", "spacetype", 1)] public char spacetype; [DNAFieldAttribute(9, "char", "butspacetype", 1)] public char butspacetype; [DNAFieldAttribute(10, "short", "butspacetype_subtype", 2)] public short butspacetype_subtype; [DNAFieldAttribute(11, "short", "winx", 2)] public short winx; [DNAFieldAttribute(12, "short", "winy", 2)] public short winy; [DNAFieldAttribute(13, "char", "headertype", 1)] public char headertype; [DNAFieldAttribute(14, "char", "do_refresh", 1)] public char do_refresh; [DNAFieldAttribute(15, "short", "flag", 2)] public short flag; [DNAFieldAttribute(16, "short", "region_active_win", 2)] public short region_active_win; [DNAFieldAttribute(17, "char", "_pad[2]", 1)] public char[] _pad = new System.Char[2]; [DNAFieldAttribute(18, "SpaceType", "*type", 0)] public SpaceType ptr_type; [DNAFieldAttribute(19, "ScrGlobalAreaData", "*global", 12)] public ScrGlobalAreaData ptr_global; [DNAFieldAttribute(20, "ListBase", "spacedata", 16)] public ListBase spacedata; [DNAFieldAttribute(21, "ListBase", "regionbase", 16)] public ListBase regionbase; [DNAFieldAttribute(22, "ListBase", "handlers", 16)] public ListBase handlers; [DNAFieldAttribute(23, "ListBase", "actionzones", 16)] public ListBase actionzones; [DNAFieldAttribute(24, "ScrArea_Runtime", "runtime", 16)] public ScrArea_Runtime runtime; public ScrArea( ScrArea ptr_next, ScrArea ptr_prev, ScrVert ptr_v1, ScrVert ptr_v2, ScrVert ptr_v3, ScrVert ptr_v4, bScreen ptr_full, rcti totrct, char spacetype, char butspacetype, short butspacetype_subtype, short winx, short winy, char headertype, char do_refresh, short flag, short region_active_win, char[] _pad, SpaceType ptr_type, ScrGlobalAreaData ptr_global, ListBase spacedata, ListBase regionbase, ListBase handlers, ListBase actionzones, ScrArea_Runtime runtime) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.ptr_v1 = ptr_v1; this.ptr_v2 = ptr_v2; this.ptr_v3 = ptr_v3; this.ptr_v4 = ptr_v4; this.ptr_full = ptr_full; this.totrct = totrct; this.spacetype = spacetype; this.butspacetype = butspacetype; this.butspacetype_subtype = butspacetype_subtype; this.winx = winx; this.winy = winy; this.headertype = headertype; this.do_refresh = do_refresh; this.flag = flag; this.region_active_win = region_active_win; this._pad = _pad; this.ptr_type = ptr_type; this.ptr_global = ptr_global; this.spacedata = spacedata; this.regionbase = regionbase; this.handlers = handlers; this.actionzones = actionzones; this.runtime = runtime; } } }