UnityEngine.GUILayoutUtility.LayoutCache.LayoutCache C# (CSharp) Method

LayoutCache() private method

private LayoutCache ( GUILayoutUtility other ) : System
other GUILayoutUtility
return System
            internal LayoutCache(GUILayoutUtility.LayoutCache other)
            {
                this.topLevel = new GUILayoutGroup();
                this.layoutGroups = new GenericStack();
                this.windows = new GUILayoutGroup();
                this.topLevel = other.topLevel;
                this.layoutGroups = other.layoutGroups;
                this.windows = other.windows;
            }
        }

Same methods

GUILayoutUtility.LayoutCache::LayoutCache ( ) : System
GUILayoutUtility.LayoutCache